Re: suggestion: fix 'now' -> CURRENT_TIMESTAMP

From: Mark Stosberg <mark(at)summersault(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: Re: suggestion: fix 'now' -> CURRENT_TIMESTAMP
Date: 2005-09-23 21:42:02
Message-ID: slrndj8tkr.9sp.mark@simba.summersault.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 2005-09-23, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Mark Stosberg <mark(at)summersault(dot)com> writes:
>> Why not make the translation on the fly, since using 'now' and
>> timestamp() are not recommended practices anyway ?
>
> Because we can't retroactively fix 7.1.

That fact hadn't escaped me.

I was thinking that in *8*.1, the parsing of "CREATE TABLE" could be
altered to recognize the old syntax and improve it on the fly.

Since the meaning is identical, it seems like a reasonable improvement
to me.

This kind of rewriting is apparently already happening, because when I declare
a column as "serial", it's immediately translated into a different
representation.

test=# create table t (c1 serial);
test=# \d t
Table "public.t"
Column | Type | Modifiers
--------+---------+---------------------------------------------------
c1 | integer | not null default nextval('public.t_c1_seq'::text)

Mark

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2005-09-23 22:56:04 Re: BUG #1878: Different execution plans for the same query.
Previous Message Tom Lane 2005-09-23 21:28:30 Re: suggestion: fix 'now' -> CURRENT_TIMESTAMP