Commit 20e71222 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

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

parent e7044d70
...@@ -10,7 +10,7 @@ INSERT INTO DATETIME_TBL VALUES ('now'); ...@@ -10,7 +10,7 @@ INSERT INTO DATETIME_TBL VALUES ('now');
INSERT INTO DATETIME_TBL VALUES ('today'); INSERT INTO DATETIME_TBL VALUES ('today');
INSERT INTO DATETIME_TBL VALUES ('yesterday'); INSERT INTO DATETIME_TBL VALUES ('yesterday');
INSERT INTO DATETIME_TBL VALUES ('tomorrow'); 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'); INSERT INTO DATETIME_TBL VALUES ('tomorrow zulu');
SELECT count(*) AS one FROM DATETIME_TBL WHERE d1 = 'today'::datetime; SELECT count(*) AS one FROM DATETIME_TBL WHERE d1 = 'today'::datetime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment