Discussion:
BUG #7942: Timestamp "19991231 240000" should not be out of range
(too old to reply)
g***@gmx.at
2013-03-14 08:47:42 UTC
Permalink
The following bug has been logged on the website:

Bug reference: 7942
Logged by: Georg Kindermann
Email address: ***@gmx.at
PostgreSQL version: 9.1.8
Operating system: Debian Wheezy
Description:

select cast('19991231 240000' as timestamp);
--Produces >ERROR: timestamp out of range<

select cast('20000101 000000' as timestamp);
--Works

--For other years both styles work e.g
select cast('19981231 240000' as timestamp);
select cast('19990101 000000' as timestamp);

--1999 to 2000 is no Leap second. Is there something other special? Thanks!
--
Sent via pgsql-bugs mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs
Tom Lane
2013-03-15 03:21:59 UTC
Permalink
Post by g***@gmx.at
select cast('19991231 240000' as timestamp);
--Produces >ERROR: timestamp out of range<
Oddly enough, I just fixed that last week:
http://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=542eeba26992305d872be699158cb3ab1c2be6e6

Weird how a bug can go unnoticed for ten years and then two people trip
over it at almost the same time.

regards, tom lane
--
Sent via pgsql-bugs mailing list (pgsql-***@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs
Loading...