Re: Values list-of-targetlists patch for comments (was Re: [PATCHES] 8.2 features?)

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Joe Conway <mail(at)joeconway(dot)com>
Cc: "Hackers (PostgreSQL)" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Values list-of-targetlists patch for comments (was Re: [PATCHES] 8.2 features?)
Date: 2006-08-02 02:52:00
Message-ID: 28624.1154487120@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs pgsql-hackers pgsql-patches

Joe Conway <mail(at)joeconway(dot)com> writes:
> Tom Lane wrote:
>> What I'm inclined to do for 8.2 is to disallow OLD/NEW references in
>> multi-element VALUES clauses; the feature is still tremendously useful
>> without that.

> Given the timing, this sounds like a reasonable approach. I agree that
> the feature has lots of interesting uses -- I'd hate to see us lose
> that. Disallowing OLD/NEW references doesn't contradict the spec in any
> way AFAIK either.

I don't think rules are in the spec at all ;-) ... so no, that's not
a problem. My example demonstrated a pretty likely use:

create rule r2 as on update to src do
insert into log values(old.*, 'old'), (new.*, 'new');

but for the moment we can tell people to work around it the way
they always have:

create rule r2 as on update to src do
insert into log select old.*, 'old' union all new.*, 'new';

or just use two separate INSERT commands in the rule.

We oughta fix it later, but I don't feel ashamed to have a restriction
like this in the first cut.

regards, tom lane

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Bruce Momjian 2006-08-02 03:14:37 Re: Values list-of-targetlists patch for comments (was Re: [PATCHES]
Previous Message Tom Lane 2006-08-02 02:38:44 Re: Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?)

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2006-08-02 03:02:43 Re: [PATCHES] Replication Documentation
Previous Message Tom Lane 2006-08-02 02:38:44 Re: Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?)

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2006-08-02 03:02:43 Re: [PATCHES] Replication Documentation
Previous Message Tom Lane 2006-08-02 02:38:44 Re: Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?)