aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/polygon.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/polygon.out')
-rw-r--r--src/test/regress/expected/polygon.out10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/regress/expected/polygon.out b/src/test/regress/expected/polygon.out
index da7e397e2ec..5ffa39b1bc6 100644
--- a/src/test/regress/expected/polygon.out
+++ b/src/test/regress/expected/polygon.out
@@ -21,15 +21,15 @@ INSERT INTO POLYGON_TBL(f1) VALUES ('(0.0,0.0)');
INSERT INTO POLYGON_TBL(f1) VALUES ('(0.0,1.0),(0.0,1.0)');
-- bad polygon input strings
INSERT INTO POLYGON_TBL(f1) VALUES ('0.0');
-ERROR: invalid input syntax for polygon: "0.0"
+ERROR: invalid input syntax for type polygon: "0.0"
INSERT INTO POLYGON_TBL(f1) VALUES ('(0.0 0.0');
-ERROR: invalid input syntax for polygon: "(0.0 0.0"
+ERROR: invalid input syntax for type polygon: "(0.0 0.0"
INSERT INTO POLYGON_TBL(f1) VALUES ('(0,1,2)');
-ERROR: invalid input syntax for polygon: "(0,1,2)"
+ERROR: invalid input syntax for type polygon: "(0,1,2)"
INSERT INTO POLYGON_TBL(f1) VALUES ('(0,1,2,3');
-ERROR: invalid input syntax for polygon: "(0,1,2,3"
+ERROR: invalid input syntax for type polygon: "(0,1,2,3"
INSERT INTO POLYGON_TBL(f1) VALUES ('asdf');
-ERROR: invalid input syntax for polygon: "asdf"
+ERROR: invalid input syntax for type polygon: "asdf"
SELECT '' AS four, POLYGON_TBL.*;
four | f1
------+---------------------