Change one date away from PST to avoid trouble after daylight savings time.

This commit is contained in:
Thomas G. Lockhart 1997-06-06 06:13:10 +00:00
parent e7044d70ef
commit 20e71222ea
1 changed files with 1 additions and 1 deletions

View File

@ -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;