summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/interval.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/interval.out')
-rw-r--r--src/test/regress/expected/interval.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/interval.out b/src/test/regress/expected/interval.out
index 54a611b469..8ba178c8bf 100644
--- a/src/test/regress/expected/interval.out
+++ b/src/test/regress/expected/interval.out
@@ -58,9 +58,9 @@ INSERT INTO INTERVAL_TBL (f1) VALUES ('5 months');
INSERT INTO INTERVAL_TBL (f1) VALUES ('5 months 12 hours');
-- badly formatted interval
INSERT INTO INTERVAL_TBL (f1) VALUES ('badly formatted interval');
-ERROR: invalid input syntax for interval: "badly formatted interval"
+ERROR: invalid input syntax for type interval: "badly formatted interval"
INSERT INTO INTERVAL_TBL (f1) VALUES ('@ 30 eons ago');
-ERROR: invalid input syntax for interval: "@ 30 eons ago"
+ERROR: invalid input syntax for type interval: "@ 30 eons ago"
-- test interval operators
SELECT '' AS ten, INTERVAL_TBL.*;
ten | f1