summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/point.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/point.out')
-rw-r--r--src/test/regress/expected/point.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/point.out b/src/test/regress/expected/point.out
index 1a5f29eee91..1ad75abdb2e 100644
--- a/src/test/regress/expected/point.out
+++ b/src/test/regress/expected/point.out
@@ -9,12 +9,12 @@ INSERT INTO POINT_TBL(f1) VALUES ('(5.1, 34.5)');
INSERT INTO POINT_TBL(f1) VALUES ('(-5.0,-12.0)');
-- bad format points
INSERT INTO POINT_TBL(f1) VALUES ('asdfasdf');
-ERROR: invalid input syntax for point: "asdfasdf"
+ERROR: invalid input syntax for type point: "asdfasdf"
INSERT INTO POINT_TBL(f1) VALUES ('10.0,10.0');
INSERT INTO POINT_TBL(f1) VALUES ('(10.0 10.0)');
-ERROR: invalid input syntax for point: "(10.0 10.0)"
+ERROR: invalid input syntax for type point: "(10.0 10.0)"
INSERT INTO POINT_TBL(f1) VALUES ('(10.0,10.0');
-ERROR: invalid input syntax for point: "(10.0,10.0"
+ERROR: invalid input syntax for type point: "(10.0,10.0"
SELECT '' AS six, POINT_TBL.*;
six | f1
-----+------------