From: | <pgsql-hackers(at)commandprompt(dot)com> |
---|---|
To: | <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Maintained Date Formats |
Date: | 2001-08-10 21:08:54 |
Message-ID: | Pine.LNX.4.30.0108101407590.26185-100000@commandprompt.com |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Good day,
In the on-line documentation, it's mentioned that there is an available
date format of the form YYDDD, where YY is the year, and DDD is the day of
the year.
The example given is '99008', which does show up correctly:
lx=# SELECT date('99008');
date
------------
1999-01-08
(1 row)
In fact, it shows up correctly up until I try to specify past
january, when above the 31st day of the year it fails.
lx=# SELECT date('99031');
date
------------
1999-01-31
(1 row)
lx=# SELECT date('99032');
ERROR: Bad date external representation '99032'
Is this format no longer maintained, or am I missing something? ;)
Regards,
Jw.
--
jlx(at)commandprompt(dot)com
by way of pgsql-hackers(at)commandprompt(dot)com
From | Date | Subject | |
---|---|---|---|
Next Message | pgsql-hackers | 2001-08-10 21:12:15 | Boolean Implicitly Typed? |
Previous Message | Bruce Momjian | 2001-08-10 20:47:26 | Re: Portal destination issue: binary vs normal cursors |