Re: top-level DML under CTEs

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Hitoshi Harada <umi(dot)tanuki(at)gmail(dot)com>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: top-level DML under CTEs
Date: 2010-09-13 13:20:19
Message-ID: AANLkTim9Mtf1P1M3JApR3O3Af=VzP_h9t712AXC_TqWL@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-rrreviewers

On Mon, Sep 13, 2010 at 9:15 AM, Hitoshi Harada <umi(dot)tanuki(at)gmail(dot)com> wrote:
> The patch attached is based on the one rejected at the last CF for 9.0
> last year.
>
> http://archives.postgresql.org/message-id/16303.1266023203@sss.pgh.pa.us
>
> This patch implements the feature that allows top-level DMLs under CTE
> WITH clause. For example:
>
> WITH t AS (SELECT * FROM x)
> UPDATE y SET val = t.val FROM t
> WHERE y.key = t.key;
>
> This feature is part of writeable CTEs proposed by David Fetter originally.

Thanks for pursuing this. I think this will be a useful feature if we
can get it committed, and plus David Fetter will be very, very happy.
:-)

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise Postgres Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Teodor Sigaev 2010-09-13 13:22:24 Re: knngist - 0.8
Previous Message Hitoshi Harada 2010-09-13 13:15:24 top-level DML under CTEs

Browse pgsql-rrreviewers by date

  From Date Subject
Next Message Merlin Moncure 2010-09-13 18:43:18 Re: top-level DML under CTEs
Previous Message Hitoshi Harada 2010-09-13 13:15:24 top-level DML under CTEs