pgsql: Fix cost estimation for indexscan filter conditions.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix cost estimation for indexscan filter conditions.
Дата
Msg-id E1SI7qz-0005qY-CQ@gemulon.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Ignore missing schemas during non-interactive assignment of sear
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Clamp indexscan filter condition cost estimate to be not less th