Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 32ab99b

Browse files
committed
Fix hidden whitespace differences between expected and result files.
1 parent 8442a92 commit 32ab99b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/test/regress/expected/create_view.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ ERROR: cannot change number of columns in view
5252
-- should fail
5353
CREATE OR REPLACE VIEW viewtest AS
5454
SELECT a, b::numeric FROM viewtest_tbl;
55-
ERROR: cannot change datatype of view column "b"
55+
ERROR: cannot change data type of view column "b"
5656
DROP VIEW viewtest;
5757
DROP TABLE viewtest_tbl;

src/test/regress/expected/geometry.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
105105
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
106106
FROM LSEG_TBL l, POINT_TBL p;
107107
ERROR: operator does not exist: lseg # point
108-
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
108+
HINT: No operator matches the given name and argument type(s). You may need to add explicit type casts.
109109
-- closest point
110110
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
111111
FROM LSEG_TBL l, POINT_TBL p;

src/test/regress/expected/geometry_1.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
105105
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
106106
FROM LSEG_TBL l, POINT_TBL p;
107107
ERROR: operator does not exist: lseg # point
108-
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
108+
HINT: No operator matches the given name and argument type(s). You may need to add explicit type casts.
109109
-- closest point
110110
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
111111
FROM LSEG_TBL l, POINT_TBL p;

src/test/regress/expected/stats.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
--
77
-- conditio sine qua non
88
SHOW stats_start_collector; -- must be on
9-
stats_start_collector
9+
stats_start_collector
1010
-----------------------
1111
on
1212
(1 row)

src/test/regress/expected/time.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ SELECT f1 AS "Eight" FROM TIME_TBL WHERE f1 >= '00:00';
7070
-- where we do mixed-type arithmetic. - thomas 2000-12-02
7171
SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
7272
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 explicit typecasts.
73+
HINT: Could not choose a best candidate operator. You may need to add explicit type casts.

src/test/regress/expected/timetz.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ SELECT f1 AS "Ten" FROM TIMETZ_TBL WHERE f1 >= '00:00-07';
7777
-- where we do mixed-type arithmetic. - thomas 2000-12-02
7878
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
7979
ERROR: operator does not exist: time with time zone + time with time zone
80-
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
80+
HINT: No operator matches the given name and argument type(s). You may need to add explicit type casts.

0 commit comments

Comments
 (0)