pgsql: Fix cost estimation for indexscan filter conditions. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix cost estimation for indexscan filter conditions.
Date
Msg-id E1SI7qz-0005qY-CQ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix cost estimation for indexscan filter conditions.

cost_index's method for estimating per-tuple costs of evaluating filter
conditions (a/k/a qpquals) was completely wrong in the presence of derived
indexable conditions, such as range conditions derived from a LIKE clause.
This was largely masked in common cases as a result of all simple operator
clauses having about the same costs, but it could show up in a big way when
dealing with functional indexes containing expensive functions, as seen for
example in bug #6579 from Istvan Endredy.  Rejigger the calculation to give
sane answers when the indexquals aren't a subset of the baserestrictinfo
list.  As a side benefit, we now do the calculation properly for cases
involving join clauses (ie, parameterized indexscans), which we always
overestimated before.

There are still cases where this is an oversimplification, such as clauses
that can be dropped because they are implied by a partial index's
predicate.  But we've never accounted for that in cost estimates before,
and I'm not convinced it's worth the cycles to try to do so.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/732bfa2448c77bba5d98f485a387da77e1df8395

Modified Files
--------------
src/backend/optimizer/path/costsize.c |   38 +++++++++++++++++---------------
1 files changed, 20 insertions(+), 18 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Ignore missing schemas during non-interactive assignment of sear
Next
From: Tom Lane
Date:
Subject: pgsql: Clamp indexscan filter condition cost estimate to be not less th