pgsql: Improve performance of partition pruning remapping a little.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve performance of partition pruning remapping a little.
Дата
Msg-id E1gNMT8-0005NW-HS@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve performance of partition pruning remapping a little.

ExecFindInitialMatchingSubPlans has to update the PartitionPruneState's
subplan mapping data to account for the removal of subplans it prunes.
However, that's only necessary if run-time pruning will also occur,
so we can skip it when that won't happen, which should result in not
needing to do the remapping in many cases.  (We now need it only when
some partitions are potentially startup-time prunable and others are
potentially run-time prunable, which seems like an unusual case.)

Also make some marginal performance improvements in the remapping
itself.  These will mainly win if most partitions got pruned by
the startup-time pruning, which is perhaps a debatable assumption
in this context.

Also fix some bogus comments, and rearrange code to marginally
reduce space consumption in the executor's query-lifespan context.

David Rowley, reviewed by Yoshikazu Imai

Discussion: https://postgr.es/m/CAKJS1f9+m6-di-zyy4B4AGn0y1B9F8UKDRigtBbNviXOkuyOpw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/34c9e455d0efcada8821ffaab61741c2e1153458

Modified Files
--------------
src/backend/executor/execPartition.c          | 99 ++++++++++++++++-----------
src/test/regress/expected/partition_prune.out | 50 ++++++++++++++
src/test/regress/sql/partition_prune.sql      | 28 ++++++++
3 files changed, 138 insertions(+), 39 deletions(-)


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: geo_ops.c: Clarify comments and function arguments
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Make reformat-dat-files, reformat-dat-files VPATH safe.