Re: partition text/varchar check problem - Mailing list pgsql-performance

From Tom Lane
Subject Re: partition text/varchar check problem
Date
Msg-id 7744.1166301281@sss.pgh.pa.us
Whole thread Raw
In response to Re: partition text/varchar check problem  (Ireneusz Pluta <ipluta@wp.pl>)
List 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 by date:

Previous
From: jamcito
Date:
Subject: Re: partition text/varchar check problem
Next
From: Dimitri Fontaine
Date:
Subject: Re: Scaling concerns