summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/abstime.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/abstime.out')
-rw-r--r--src/test/regress/expected/abstime.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/abstime.out b/src/test/regress/expected/abstime.out
index bc810a6d2b..abece85133 100644
--- a/src/test/regress/expected/abstime.out
+++ b/src/test/regress/expected/abstime.out
@@ -28,12 +28,12 @@ INSERT INTO ABSTIME_TBL (f1) VALUES (abstime '-infinity');
INSERT INTO ABSTIME_TBL (f1) VALUES (abstime 'May 10, 1947 23:59:12');
-- what happens if we specify slightly misformatted abstime?
INSERT INTO ABSTIME_TBL (f1) VALUES ('Feb 35, 1946 10:00:00');
-ERROR: Bad abstime external representation 'Feb 35, 1946 10:00:00'
+ERROR: invalid input syntax for abstime: "Feb 35, 1946 10:00:00"
INSERT INTO ABSTIME_TBL (f1) VALUES ('Feb 28, 1984 25:08:10');
-ERROR: Bad abstime external representation 'Feb 28, 1984 25:08:10'
+ERROR: invalid input syntax for abstime: "Feb 28, 1984 25:08:10"
-- badly formatted abstimes: these should result in invalid abstimes
INSERT INTO ABSTIME_TBL (f1) VALUES ('bad date format');
-ERROR: Bad abstime external representation 'bad date format'
+ERROR: invalid input syntax for abstime: "bad date format"
INSERT INTO ABSTIME_TBL (f1) VALUES ('Jun 10, 1843');
-- test abstime operators
SELECT '' AS eight, ABSTIME_TBL.*;