Re: Scrub one large table against another

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Scrub one large table against another
Дата
Msg-id 14924.1160677509@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Scrub one large table against another  (Brendan Curran <brendan.curran@gmail.com>)
Список pgsql-performance
Brendan Curran <brendan.curran@gmail.com> writes:
> I'll tack up a note to the online documentation letting people know so
> that it's a little more explicitly clear that when you choose IN on
> data that isn't explicitly unique (to the planner i.e.  post-analyze)
> you get the baggage of a forced unique whether you need it or not. Or
> perhaps someone that knows the internals of the planner a little
> better than me should put some info up regarding that?

You get a forced unique step, period --- the planner doesn't try to
shortcut on the basis of noticing a relevant unique constraint.
We have some plan techniques that might look like they are not checking
uniqueness (eg, an "IN Join") but they really are.

This is an example of what I was talking about just a minute ago, about
not wanting to rely on constraints that could go away while the plan is
still potentially usable.  It's certainly something that we should look
at adding as soon as the plan-invalidation infrastructure is there to
make it safe to do.

            regards, tom lane

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

Предыдущее
От: Brendan Curran
Дата:
Сообщение: Re: Scrub one large table against another
Следующее
От: Andrew Sullivan
Дата:
Сообщение: Re: [HACKERS] Hints proposal