[COMMITTERS] pgsql: Expand partitioned table RTEs level by level,without flattening

Поиск
Список
Период
Сортировка
От Robert Haas
Тема [COMMITTERS] pgsql: Expand partitioned table RTEs level by level,without flattening
Дата
Msg-id E1dsa1L-0004yv-JL@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: [COMMITTERS] pgsql: Expand partitioned table RTEs level by level, without flattening
Список pgsql-committers
Expand partitioned table RTEs level by level, without flattening.

Flattening the partitioning hierarchy at this stage makes various
desirable optimizations difficult.  The original use case for this
patch was partition-wise join, which wants to match up the partitions
in one partitioning hierarchy with those in another such hierarchy.
However, it now seems that it will also be useful in making partition
pruning work using the PartitionDesc rather than constraint exclusion,
because with a flattened expansion, we have no easy way to figure out
which PartitionDescs apply to which leaf tables in a multi-level
partition hierarchy.

As it turns out, we end up creating both rte->inh and !rte->inh RTEs
for each intermediate partitioned table, just as we previously did for
the root table.  This seems unnecessary since the partitioned tables
have no storage and are not scanned.  We might want to go back and
rejigger things so that no partitioned tables (including the parent)
need !rte->inh RTEs, but that seems to require some adjustments not
related to the core purpose of this patch.

Ashutosh Bapat, reviewed by me and by Amit Langote.  Some final
adjustments by me.

Discussion: http://postgr.es/m/CAFjFpRd=1venqLL7oGU=C1dEkuvk2DJgvF+7uKbnPHaum1mvHQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0a480502b092195a9b25a2f0f199a21d592a9c57

Modified Files
--------------
src/backend/optimizer/path/allpaths.c  |  28 ++--
src/backend/optimizer/plan/initsplan.c |  22 +++-
src/backend/optimizer/plan/planner.c   |  80 ++++++++---
src/backend/optimizer/prep/prepunion.c | 234 +++++++++++++++++++--------------
src/include/nodes/relation.h           |   8 +-
src/test/regress/expected/inherit.out  |  22 ++++
src/test/regress/expected/join.out     |  53 ++++++++
src/test/regress/sql/inherit.sql       |  17 +++
src/test/regress/sql/join.sql          |  23 ++++
9 files changed, 350 insertions(+), 137 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: [COMMITTERS] pgsql: Avoid use of bool in thread_test.c
Следующее
От: Andres Freund
Дата:
Сообщение: [COMMITTERS] pgsql: Perform only one ReadControlFile() during startup.