From: Thomas G. Lockhart Date: Fri, 6 Jun 1997 06:13:10 +0000 (+0000) Subject: Change one date away from PST to avoid trouble after daylight savings time. X-Git-Tag: REL6_1~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=20e71222eaea3193c96fd155313018978565b8df;p=thirdparty%2Fpostgresql.git Change one date away from PST to avoid trouble after daylight savings time. --- diff --git a/src/test/regress/sql/datetime.sql b/src/test/regress/sql/datetime.sql index b09109496e2..5848c24d8cd 100644 --- a/src/test/regress/sql/datetime.sql +++ b/src/test/regress/sql/datetime.sql @@ -10,7 +10,7 @@ INSERT INTO DATETIME_TBL VALUES ('now'); INSERT INTO DATETIME_TBL VALUES ('today'); INSERT INTO DATETIME_TBL VALUES ('yesterday'); INSERT INTO DATETIME_TBL VALUES ('tomorrow'); -INSERT INTO DATETIME_TBL VALUES ('tomorrow PST'); +INSERT INTO DATETIME_TBL VALUES ('tomorrow EST'); INSERT INTO DATETIME_TBL VALUES ('tomorrow zulu'); SELECT count(*) AS one FROM DATETIME_TBL WHERE d1 = 'today'::datetime;