Re: WITH x AS (...) and visibility in UPDATE

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: WITH x AS (...) and visibility in UPDATE
Дата
Msg-id CAHyXU0x=8PLaxM+b5CEzKwKTY7hAW6P3CvniQOiT-E_8_Bd6Vg@mail.gmail.com
обсуждение исходный текст
Ответ на WITH x AS (...) and visibility in UPDATE  (Peter V <peterv861908@hotmail.com>)
Ответы Re: WITH x AS (...) and visibility in UPDATE  (Peter V <peterv861908@hotmail.com>)
Список pgsql-general
On Wed, Jul 27, 2011 at 3:18 PM, Peter V <peterv861908@hotmail.com> wrote:
>
> Hello all,
>
> I am trying out PostgreSQL 9.1 Beta 3. In particular, I am very interested in WITH x AS (...) construction.
>
> drop table if exists t;
> create table t
> (
>     identifier   serial,
>     title        text
> );
>
> with c as
> (
>     insert into t (title) values ('old') returning *
> )
> update t set title = 'new' from c where t.identifier = c.identifier;
>
> select * from t;
>
> Can someone explain why this returns 'old' instead of 'new'? Is the new row not yet visible when the update is
evaluated?

because the update statement isn't doing anything.  (you could have
confirmed this by adding 'returning *' to the update.

While the 'from c' is working, you can't join back to t yet because
the statement hasn't resolved. here's a reduced form of your problem:

postgres=# with c as
(
    insert into t (title) values ('old') returning *
) select * from t join c using (identifier);

The join fails because at the time it happens t isn't yet populated.

merlin

В списке pgsql-general по дате отправления:

Предыдущее
От: Peter V
Дата:
Сообщение: WITH x AS (...) and visibility in UPDATE
Следующее
От: Eric Ridge
Дата:
Сообщение: Re: error when compiling a c function