pgsql: Fix corner-case planner failure for MERGE.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix corner-case planner failure for MERGE.
Дата
Msg-id E1phBQ3-000Aej-TT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix corner-case planner failure for MERGE.

MERGE planning could fail with "variable not found in subplan target
list" if the target table is partitioned and all its partitions are
excluded at plan time, or in the case where it has no partitions but
used to have some.  This happened because distribute_row_identity_vars
thought it didn't need to make the target table's reltarget list
fully valid; but if we generate a join plan then that is required
because the dummy Result node's tlist will be made from the reltarget.

The same logic appears in distribute_row_identity_vars in v14,
but AFAICS the problem is unreachable in that branch for lack of
MERGE.  In other updating statements, the target table is always
inner-joined to any other tables, so if the target is known dummy
then the whole plan reduces to dummy, so no join nodes are created.
So I'll refrain from back-patching this code change to v14 for now.

Per report from Alvaro Herrera.

Discussion: https://postgr.es/m/20230328112248.6as34mlx5sr4kltg@alvherre.pgsql

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/326a33a289c7ba2dbf45f17e610b7be98dc11f67

Modified Files
--------------
src/backend/optimizer/util/appendinfo.c | 10 +++++++---
src/test/regress/expected/merge.out     | 26 ++++++++++++++++++++++++++
src/test/regress/sql/merge.sql          | 12 ++++++++++++
3 files changed, 45 insertions(+), 3 deletions(-)


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

Предыдущее
От: Jeff Davis
Дата:
Сообщение: pgsql: initdb: emit message when using default ICU locale.
Следующее
От: Peter Geoghegan
Дата:
Сообщение: pgsql: Fix recent pg_walinspect fpi_length bug.