pgsql: Rearrange make_partitionedrel_pruneinfo to avoid work when weca

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Rearrange make_partitionedrel_pruneinfo to avoid work when weca
Дата
Msg-id E1h7PL8-0002n3-2t@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Rearrange make_partitionedrel_pruneinfo to avoid work when we can't prune.

Postpone most of the effort of constructing PartitionedRelPruneInfos
until after we have found out whether run-time pruning is needed at all.
This costs very little duplicated effort (basically just an extra
find_base_rel() call per partition) and saves quite a bit when we
can't do run-time pruning.

Also, merge the first loop (for building relid_subpart_map) into
the second loop, since we don't need the map to be valid during
that loop.

Amit Langote

Discussion: https://postgr.es/m/9d7c5112-cb99-6a47-d3be-cf1ee6862a1d@lab.ntt.co.jp

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/734308a220729e4ececa3758bdcae39a335d55ea

Modified Files
--------------
src/backend/partitioning/partprune.c | 108 ++++++++++++++++++++++-------------
1 file changed, 68 insertions(+), 40 deletions(-)


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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: pgsql: Go back to suppressing foreign_data DETAIL test output.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Collations with nondeterministic comparison