diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-08-09 21:03:11 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-08-09 21:03:11 +0000 |
commit | 9c90a2b045dfa5ff6928c6e1af24ba8c621eadc1 (patch) | |
tree | b98b8007ea2a1e2e80deb6bf2c3ce5830b176758 /src | |
parent | 2e57875b97e8bf08e44352045197995d5d589a23 (diff) | |
download | postgresql-9c90a2b045dfa5ff6928c6e1af24ba8c621eadc1.tar.gz postgresql-9c90a2b045dfa5ff6928c6e1af24ba8c621eadc1.zip |
This should be the right expected file.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/horology.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/horology.out b/src/test/regress/expected/horology.out index fbe52880e3b..7decb8d8cb3 100644 --- a/src/test/regress/expected/horology.out +++ b/src/test/regress/expected/horology.out @@ -118,9 +118,9 @@ SELECT interval '04:30' - time '01:02' AS "+03:28"; (1 row) SELECT CAST(time with time zone '01:02-08' AS interval) AS "+00:01"; -ERROR: Cannot cast type time with time zone to interval +ERROR: Cannot cast type 'time with time zone' to 'interval' SELECT CAST(interval '02:03' AS time with time zone) AS "02:03:00-08"; -ERROR: Cannot cast type interval to time with time zone +ERROR: Cannot cast type 'interval' to 'time with time zone' SELECT time with time zone '01:30-08' - interval '02:01' AS "23:29:00-08"; 23:29:00-08 ------------- |