Re: [HACKERS] quick Date question - Mailing list pgsql-hackers

From Thomas G. Lockhart
Subject Re: [HACKERS] quick Date question
Date
Msg-id 36DAC283.7F658AC5@alumni.caltech.edu
Whole thread Raw
In response to quick Date question  ("Jackson, DeJuan" <djackson@cpsgroup.com>)
List pgsql-hackers
> select '12/13/1901 18:00:00 CST'::datetime;
> ----------------------------
> Fri Dec 13 18:00:00 1901 CST
> select '12/13/1901 17:59:59 CST'::datetime;
> ------------------------
> Fri Dec 13 23:59:59 1901
> Why???

Unix time databases do not have support for dates earlier than 1903 (?)
since Unix system time does not go back farther than that. Also, it
would be inappropriate (imho) to adopt the current conventions for
timezone since those conventions did not exist back then.

So date/time outside of the Unix system time range is displayed as UTC.
You had forced a different time zone in your input, but the output is
the same time in the universal time zone. If you do not specify a time
zone then the output matches the input exactly.
                     - Tom


pgsql-hackers by date:

Previous
From: Giuseppe Tanzilli
Date:
Subject: Bug report
Next
From: "Thomas G. Lockhart"
Date:
Subject: Re: OUTER joins