mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Fix hidden whitespace differences between expected and result files.
This commit is contained in:
parent
8442a92e5a
commit
32ab99ba10
@ -52,6 +52,6 @@ ERROR: cannot change number of columns in view
|
|||||||
-- should fail
|
-- should fail
|
||||||
CREATE OR REPLACE VIEW viewtest AS
|
CREATE OR REPLACE VIEW viewtest AS
|
||||||
SELECT a, b::numeric FROM viewtest_tbl;
|
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 VIEW viewtest;
|
||||||
DROP TABLE viewtest_tbl;
|
DROP TABLE viewtest_tbl;
|
||||||
|
@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
|
|||||||
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
|
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
|
||||||
FROM LSEG_TBL l, POINT_TBL p;
|
FROM LSEG_TBL l, POINT_TBL p;
|
||||||
ERROR: operator does not exist: lseg # point
|
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
|
-- closest point
|
||||||
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
|
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
|
||||||
FROM LSEG_TBL l, POINT_TBL p;
|
FROM LSEG_TBL l, POINT_TBL p;
|
||||||
|
@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
|
|||||||
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
|
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
|
||||||
FROM LSEG_TBL l, POINT_TBL p;
|
FROM LSEG_TBL l, POINT_TBL p;
|
||||||
ERROR: operator does not exist: lseg # point
|
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
|
-- closest point
|
||||||
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
|
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
|
||||||
FROM LSEG_TBL l, POINT_TBL p;
|
FROM LSEG_TBL l, POINT_TBL p;
|
||||||
|
@ -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
|
-- where we do mixed-type arithmetic. - thomas 2000-12-02
|
||||||
SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
|
SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
|
||||||
ERROR: operator is not unique: time without time zone + time without time zone
|
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.
|
||||||
|
@ -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
|
-- where we do mixed-type arithmetic. - thomas 2000-12-02
|
||||||
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
|
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
|
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.
|
||||||
|
Loading…
Reference in New Issue
Block a user