diff options
Diffstat (limited to 'src/test/regress/sql/horology.sql')
-rw-r--r-- | src/test/regress/sql/horology.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/sql/horology.sql b/src/test/regress/sql/horology.sql index d302d1560d8..75efd627ba2 100644 --- a/src/test/regress/sql/horology.sql +++ b/src/test/regress/sql/horology.sql @@ -229,7 +229,7 @@ SELECT '' AS three, ABSTIME_TBL.* SELECT '' AS "16", f1 AS "timestamp", date(f1) AS date FROM TEMP_TIMESTAMP - WHERE f1 <> timestamp 'current' + WHERE f1 <> timestamp 'now' ORDER BY date, "timestamp"; SELECT '' AS "16", f1 AS "timestamp", abstime(f1) AS abstime @@ -238,7 +238,7 @@ SELECT '' AS "16", f1 AS "timestamp", abstime(f1) AS abstime SELECT '' AS four, f1 AS abstime, date(f1) AS date FROM ABSTIME_TBL - WHERE isfinite(f1) AND f1 <> abstime 'current' + WHERE isfinite(f1) AND f1 <> abstime 'now' ORDER BY date, abstime; SELECT '' AS two, d1 AS "timestamp", abstime(d1) AS abstime |