Re: Allowing NOT IN to use ANTI joins

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Allowing NOT IN to use ANTI joins
Дата
Msg-id CA+U5nMJGuzD-inHr-bR+ogueCQnbCX4BU-c8z73cK_HwF7AdCg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Allowing NOT IN to use ANTI joins  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Allowing NOT IN to use ANTI joins
Список pgsql-hackers
On 24 June 2014 23:44, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Simon Riggs <simon@2ndQuadrant.com> writes:
>> Having said that, any join plan that relies upon a constraint will
>> still be valid even if we drop a constraint while the plan executes
>> because any new writes will not be visible to the executing join plan.
>
> mumble ... EvalPlanQual ?

As long as we are relaxing a constraint, we are OK if an earlier
snapshot thinks its dealing with a tighter constraint whereas the new
reality is a relaxed constraint.

The worst that could happen is we hit an ERROR from a constraint that
was in force at the start of the query, so for consistency we really
should be enforcing the same constraint throughout the lifetime of the
query.

-- Simon Riggs                   http://www.2ndQuadrant.com/PostgreSQL Development, 24x7 Support, Training & Services



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Allowing NOT IN to use ANTI joins
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Allowing join removals for more join types