Re: wCTE: why not finish sub-updates at the end, not the beginning?

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: wCTE: why not finish sub-updates at the end, not the beginning?
Дата
Msg-id AANLkTinDwQVezdd9rV_3XtvdXnYrd0k12nTpqWqectjY@mail.gmail.com
обсуждение исходный текст
Ответ на wCTE: why not finish sub-updates at the end, not the beginning?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: wCTE: why not finish sub-updates at the end, not the beginning?  (Merlin Moncure <mmoncure@gmail.com>)
Re: wCTE: why not finish sub-updates at the end, not the beginning?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Fri, Feb 25, 2011 at 2:58 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> However, the real reason for doing it isn't any of those, but rather
> to establish the principle that the executions of the modifying
> sub-queries are interleaved not sequential.  We're never going to be
> able to do any significant optimization of such queries if we have to
> preserve the behavior that the sub-queries execute sequentially.
> And I think it's inevitable that users will manage to build such an
> assumption into their queries if the first release with the feature
> behaves that way.

Does the interleaved execution have sane semantics?

With a query like:

WITH a as update x set x.i=x.i+1 returning x.i, b as update x set x.i=x.i+1 returning x.i
select * from a natural join b;

Is there any way to tell what it will return or what state it will
leave the table in?

--
greg


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: wCTE behaviour
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: wCTE: why not finish sub-updates at the end, not the beginning?