We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8442a92 commit32ab99bCopy full SHA for 32ab99b
src/test/regress/expected/create_view.out
@@ -52,6 +52,6 @@ ERROR: cannot change number of columns in view
52
-- should fail
53
CREATE OR REPLACE VIEW viewtest AS
54
SELECT a, b::numeric FROM viewtest_tbl;
55
-ERROR: cannot changedatatype of view column "b"
+ERROR: cannot changedata type of view column "b"
56
DROP VIEW viewtest;
57
DROP TABLE viewtest_tbl;
src/test/regress/expected/geometry.out
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
105
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
106
FROM LSEG_TBL l, POINT_TBL p;
107
ERROR: operator does not exist: lseg # point
108
-HINT: No operator matches the given name and argument type(s). You may need to add explicittypecasts.
+HINT: No operator matches the given name and argument type(s). You may need to add explicittype casts.
109
-- closest point
110
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
111
src/test/regress/expected/geometry_1.out
src/test/regress/expected/stats.out
@@ -6,7 +6,7 @@
6
--
7
-- conditio sine qua non
8
SHOW stats_start_collector; -- must be on
9
- stats_start_collector
+ stats_start_collector
10
-----------------------
11
on
12
(1 row)
src/test/regress/expected/time.out
@@ -70,4 +70,4 @@ SELECT f1 AS "Eight" FROM TIME_TBL WHERE f1 >= '00:00';
70
-- where we do mixed-type arithmetic. - thomas 2000-12-02
71
SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
72
ERROR: operator is not unique: time without time zone + time without time zone
73
-HINT: Could not choose a best candidate operator. You may need to add explicittypecasts.
+HINT: Could not choose a best candidate operator. You may need to add explicittype casts.
src/test/regress/expected/timetz.out
@@ -77,4 +77,4 @@ SELECT f1 AS "Ten" FROM TIMETZ_TBL WHERE f1 >= '00:00-07';
77
78
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
79
ERROR: operator does not exist: time with time zone + time with time zone
80