Tweak horology regress test to ensure platform-independent ordering of

results in conversions tests.  Update horology-no-DST-before-1970.out.
This commit is contained in:
Tom Lane 2000-03-16 17:03:41 +00:00
parent a7e0ee9a0e
commit 6a4b7d83f3
2 changed files with 751 additions and 523 deletions

File diff suppressed because it is too large Load Diff

View File

@ -69,7 +69,7 @@ SELECT '' AS four, f1 AS abstime,
SELECT '' AS "15", f1 AS timestamp, date( f1) AS date SELECT '' AS "15", f1 AS timestamp, date( f1) AS date
FROM TEMP_TIMESTAMP FROM TEMP_TIMESTAMP
WHERE f1 <> timestamp 'current' WHERE f1 <> timestamp 'current'
ORDER BY date; ORDER BY date, timestamp;
SELECT '' AS "15", f1 AS timestamp, abstime( f1) AS abstime SELECT '' AS "15", f1 AS timestamp, abstime( f1) AS abstime
FROM TEMP_TIMESTAMP FROM TEMP_TIMESTAMP
@ -78,7 +78,7 @@ SELECT '' AS "15", f1 AS timestamp, abstime( f1) AS abstime
SELECT '' AS four, f1 AS abstime, date( f1) AS date SELECT '' AS four, f1 AS abstime, date( f1) AS date
FROM ABSTIME_TBL FROM ABSTIME_TBL
WHERE isfinite(f1) AND f1 <> abstime 'current' WHERE isfinite(f1) AND f1 <> abstime 'current'
ORDER BY date; ORDER BY date, abstime;
SELECT '' AS five, d1 AS timestamp, abstime(d1) AS abstime SELECT '' AS five, d1 AS timestamp, abstime(d1) AS abstime
FROM TIMESTAMP_TBL WHERE NOT isfinite(d1); FROM TIMESTAMP_TBL WHERE NOT isfinite(d1);