Re: [HACKERS] Re: [GENERAL] leap day bug after 1901 - Mailing list pgsql-general

From Thomas Lockhart
Subject Re: [HACKERS] Re: [GENERAL] leap day bug after 1901
Date
Msg-id 371354BC.42A67FDA@alumni.caltech.edu
Whole thread Raw
In response to leap day bug after 1901  (José Soares <jose@sferacarta.com>)
List pgsql-general
> > prova=> select date '1901-02-29';
> > ERROR:  date_in: day must be limited to values 1 through 28 in
> > '1901-02-29'
> > prova=> select date '1902-02-29';
> > ----------
> > 1902-03-01
> Any body knows why PostgreSQL checks for date validity only
> for dates less than 1902 and greater than 2037 ?

Yes (and no :) Unix system time goes from ~1902 to ~2038, and the time
zone database included with your system can only work in that range.
So I use system routines for dates within that range and bypass those
(and do not assign time zones) outside that range.

However, I'm puzzled as to why these checks don't seem to be effective
when using dates within this range. Will look at it, and post patches.

Thanks for the report.

                    - Tom

--
Thomas Lockhart                lockhart@alumni.caltech.edu
South Pasadena, California

pgsql-general by date:

Previous
From: Valerio Santinelli
Date:
Subject: pg_dumpall troubles
Next
From: Thomas Lockhart
Date:
Subject: Re: [HACKERS] Gregorian Calendar