Re: [HACKERS] date parsing

2003-06-26 Thread Tom Lane
"Christopher Kings-Lynne" <[EMAIL PROTECTED]> writes: > Is this deliberate? > usa=# select '1-1--2001'::date; > [works] The guys who might actually be able to tell you whether it was an intended behavior are long gone. But I don't see any particular problem with it. regar

[HACKERS] date parsing

2003-06-26 Thread Christopher Kings-Lynne
Is this deliberate? usa=# select '1-1-2001'::date; date 2001-01-01 (1 row) usa=# select '1-1--2001'::date; date 2001-01-01 (1 row) usa=# select '1-1---2001'::date; date 2001-01-01 (1 row) usa=# select '1--1--2001'