Re: to_date/to timestamp going to BC

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: jason(dot)servetar(at)ccgenesis(dot)com
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: to_date/to timestamp going to BC
Date: 2001-10-03 21:14:02
Message-ID: 11453.1002143642@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

jason(dot)servetar(at)ccgenesis(dot)com writes:
> Can someone tell me if this is a bug with the date functions or am I using
> them incorrectly?

I get the right thing when I use the right format:

regression=# select dt, to_timestamp(dt, 'FMMonth dd, yyyy') from test_date;
dt | to_timestamp
----------------+------------------------
March 11, 1997 | 1997-03-11 00:00:00-05
(1 row)

However, I'd agree that this shows a lack of robustness in to_timestamp;
it's not objecting to data that doesn't match the format.

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message jason.servetar 2001-10-03 21:36:31 Re: to_date/to timestamp going to BC
Previous Message jason.servetar 2001-10-03 20:22:10 to_date/to timestamp going to BC