Re: Dates BC.

Поиск
Список
Период
Сортировка
От Dann Corbit
Тема Re: Dates BC.
Дата
Msg-id D90A5A6C612A39408103E6ECDD77B8294CE510@voyager.corporate.connx.com
обсуждение исходный текст
Ответ на Dates BC.  (Kurt Roeckx <Q@ping.be>)
Ответы Re: Dates BC.  (Karel Zak <zakkr@zf.jcu.cz>)
Список pgsql-hackers
There is no zero calendar year.  The first year of Anno Domini is 1.  It's ordinal, not cardinal.

> -----Original Message-----
> From: Karel Zak [mailto:zakkr@zf.jcu.cz]
> Sent: Friday, December 19, 2003 12:04 AM
> To: Kurt Roeckx
> Cc: pgsql-hackers@postgresql.org
> Subject: Re: [HACKERS] Dates BC.
>
>
>
> On Thu, Dec 18, 2003 at 02:11:20PM +0100, Kurt Roeckx wrote:
> > I find this a little strange:
> >
> > select date_part('year', '0002-01-01 BC'::date);
> >  date_part
> > -----------
> >         -1
> >
> > It seems 1 BC and 0 are the same year.
>
>  Is there connection between formatting.c and date_part() ?
>  I don't think so...
>
> > In backend/utils/adt/formatting.c:
> >
> >         if (tmfc.bc)
> >         {
> >                 if (tm->tm_year > 0)
> >                         tm->tm_year = -(tm->tm_year - 1);
> >
> > It this normal or a bug?
>
>  I think this code is OK, butg is somethere in extract
> (date_part) code.
>
>
> test=# select to_date('0020-01-10 BC'::text, 'YYYY-MM-DD BC');
>     to_date
> ---------------
>  0020-01-10 BC
> (1 řádka)
>
> test=# select to_date('0020-01-10 AD'::text, 'YYYY-MM-DD BC');
>   to_date
> ------------
>  0020-01-10
>
> test=# select to_char('0020-01-10 BC'::date, 'YYYY-MM-DD AD');
>   to_char
> ---------------
>  0020-01-10 BC
>
>     Karel
> --
>  Karel Zak  <zakkr@zf.jcu.cz>
>  http://home.zf.jcu.cz/~zakkr/
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>               http://www.postgresql.org/docs/faqs/FAQ.html


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Karel Zak
Дата:
Сообщение: Re: Dates BC.
Следующее
От: Karel Zak
Дата:
Сообщение: Re: Dates BC.