pgsql: Clean up side-effects of commits ab5fcf2b0 et al.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Clean up side-effects of commits ab5fcf2b0 et al.
Дата
Msg-id E1hDB4B-0008DZ-PE@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Clean up side-effects of commits ab5fcf2b0 et al.

Before those commits, partitioning-related code in the executor could
assume that ModifyTableState.resultRelInfo[] contains only leaf partitions.
However, now a fully-pruned update results in a dummy ModifyTable that
references the root partitioned table, and that breaks some stuff.

In v11, this led to an assertion or core dump in the tuple routing code.
Fix by disabling tuple routing, since we don't need that anyway.
(I chose to do that in HEAD as well for safety, even though the problem
doesn't manifest in HEAD as it stands.)

In v10, this confused ExecInitModifyTable's decision about whether it
needed to close the root table.  But we can get rid of that altogether
by being smarter about where to find the root table.

Note that since the referenced commits haven't shipped yet, this
isn't fixing any bug the field has seen.

Amit Langote, per a report from me

Discussion: https://postgr.es/m/20710.1554582479@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/159970bcadbbdefd312d75ce7ad90f19add19b40

Modified Files
--------------
src/backend/optimizer/plan/planner.c  | 2 ++
src/test/regress/expected/inherit.out | 9 +++++++++
src/test/regress/sql/inherit.sql      | 3 +++
3 files changed, 14 insertions(+)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Report progress of REINDEX operations
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: psql \dP: list partitioned tables and indexes