Fix hidden whitespace differences between expected and result files.
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 1 Nov 2003 03:07:07 +0000 (03:07 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 1 Nov 2003 03:07:07 +0000 (03:07 +0000)
src/test/regress/expected/create_view.out
src/test/regress/expected/geometry.out
src/test/regress/expected/geometry_1.out
src/test/regress/expected/stats.out
src/test/regress/expected/time.out
src/test/regress/expected/timetz.out

index 515e5b19a44e0155bd517f3c3ea5d553b8648af8..630855ed37cbf25bbb33caefda0f0660bb243a0d 100644 (file)
@@ -52,6 +52,6 @@ ERROR:  cannot change number of columns in view
 -- should fail
 CREATE OR REPLACE VIEW viewtest AS
        SELECT a, b::numeric FROM viewtest_tbl;
-ERROR:  cannot change datatype of view column "b"
+ERROR:  cannot change data type of view column "b"
 DROP VIEW viewtest;
 DROP TABLE viewtest_tbl;
index 0889ea25e640efa7afa7a61d75305bcbfc5de9ed..6e619cf0172c93db5b3abde4b9090635e7faad3a 100644 (file)
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
 SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
    FROM LSEG_TBL l, POINT_TBL p;
 ERROR:  operator does not exist: lseg # point
-HINT:  No operator matches the given name and argument type(s). You may need to add explicit typecasts.
+HINT:  No operator matches the given name and argument type(s). You may need to add explicit type casts.
 -- closest point
 SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
    FROM LSEG_TBL l, POINT_TBL p;
index 5c205d8bcc7e03be5d607d3aa99fcade1349bbbf..70e86958b794a5eaacb0ec53ce3c34473fe5ff73 100644 (file)
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
 SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
    FROM LSEG_TBL l, POINT_TBL p;
 ERROR:  operator does not exist: lseg # point
-HINT:  No operator matches the given name and argument type(s). You may need to add explicit typecasts.
+HINT:  No operator matches the given name and argument type(s). You may need to add explicit type casts.
 -- closest point
 SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
    FROM LSEG_TBL l, POINT_TBL p;
index b0056f6cea056709515a9d0d72758de9f71f2d9b..4ddeddaa13f08bfbe94f0f46c2ec3a513d03637b 100644 (file)
@@ -6,7 +6,7 @@
 --
 -- conditio sine qua non
 SHOW stats_start_collector;  -- must be on
- stats_start_collector
+ stats_start_collector 
 -----------------------
  on
 (1 row)
index 5cf09b1ae211029a0748f55b370e669f63728bf2..a562c29691e9e832d5b9ff44312588f6897ce893 100644 (file)
@@ -70,4 +70,4 @@ SELECT f1 AS "Eight" FROM TIME_TBL WHERE f1 >= '00:00';
 -- where we do mixed-type arithmetic. - thomas 2000-12-02
 SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
 ERROR:  operator is not unique: time without time zone + time without time zone
-HINT:  Could not choose a best candidate operator. You may need to add explicit typecasts.
+HINT:  Could not choose a best candidate operator. You may need to add explicit type casts.
index 540d5e091a84a1c9013ce4c23e14644f7c6170c9..20a394a79a048b85701a143ff3a462da8955dd51 100644 (file)
@@ -77,4 +77,4 @@ SELECT f1 AS "Ten" FROM TIMETZ_TBL WHERE f1 >= '00:00-07';
 -- where we do mixed-type arithmetic. - thomas 2000-12-02
 SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
 ERROR:  operator does not exist: time with time zone + time with time zone
-HINT:  No operator matches the given name and argument type(s). You may need to add explicit typecasts.
+HINT:  No operator matches the given name and argument type(s). You may need to add explicit type casts.