Re: partition text/varchar check problem

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: partition text/varchar check problem
Дата
Msg-id 7744.1166301281@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: partition text/varchar check problem  (Ireneusz Pluta <ipluta@wp.pl>)
Список pgsql-performance
Ireneusz Pluta <ipluta@wp.pl> writes:
> Can you show what you get from:
> EXPLAIN SELECT * FROM data WHERE name LIKE 'a%'

Won't help.  Exact equality of the WHERE condition is useful for
partial-index cases, because there the planner needs to prove that
the WHERE condition implies the index predicate before it can use
the index; and exact equality is certainly sufficient for that.
But for constraint exclusion, the problem is to prove that the
WHERE condition refutes the constraint, rather than implies it.
Knowing that "name LIKE 'a%'" disproves "name LIKE 'b%'" requires
more knowledge about LIKE than the planner has got.

            regards, tom lane

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

Предыдущее
От: jamcito
Дата:
Сообщение: Re: partition text/varchar check problem
Следующее
От: Dimitri Fontaine
Дата:
Сообщение: Re: Scaling concerns