Hi,
Are we going to address the fact that you can't enter 3 digit years without
a leading 0?
australia=# select '111-01-01'::date;
ERROR: Bad date external representation '111-01-01'
australia=# select '0111-01-01'::date; date
------------0111-01-01
(1 row)
I can't see any reason why we shouldn't allow it???
Chris