Re: [SQL] timestamps

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: davidrugge(at)mindspring(dot)com
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] timestamps
Date: 1999-11-03 05:48:26
Message-ID: 18776.941608106@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

David Rugge <davidrugge(at)mindspring(dot)com> writes:
> I created a table using this statement:
> create table timestamptest (creation_date timestamp default text 'now')
> But I get the creation date of the table instead of the date of the
> transaction. This is the format suggested in the manual to workaround the
> default value being set at table creation, but it doesn't work!

Try "default now()".

The documentation recommending "default text 'now'" is bogus, IMHO.
That method depends on a particular set of interacting behaviors in the
parser and the table-default-creation code, and at least some of those
behaviors were arguably bugs. They were also data-type-dependent ---
I believe "default text 'now'" does work in 6.5.* for a DATETIME column,
but not for a TIMESTAMP column, because of slight differences in the
sets of available operators for the two datatypes.

FYI, any of these variants should give the result you want in future
releases. But now() is the only one that I think can be counted on
to work in current and obsolete Postgres versions too.

regards, tom lane

Browse pgsql-sql by date

  From Date Subject
Next Message User & 1999-11-03 07:31:12 Re: [SQL] why don't this create table work?
Previous Message Tom Lane 1999-11-03 05:35:52 Re: [SQL] why don't this create table work?