Re: [HACKERS] Re: [GENERAL] leap day bug after 1901

Поиск
Список
Период
Сортировка
От Thomas Lockhart
Тема Re: [HACKERS] Re: [GENERAL] leap day bug after 1901
Дата
Msg-id 371354BC.42A67FDA@alumni.caltech.edu
обсуждение исходный текст
Ответ на leap day bug after 1901  (José Soares <jose@sferacarta.com>)
Список 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 по дате отправления:

Предыдущее
От: Valerio Santinelli
Дата:
Сообщение: pg_dumpall troubles
Следующее
От: Thomas Lockhart
Дата:
Сообщение: Re: [HACKERS] Gregorian Calendar