pgsql: Fix ALTER TABLE DETACH for inconsistent indexes

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Fix ALTER TABLE DETACH for inconsistent indexes
Дата
Msg-id E1sSDwT-001MqJ-UJ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix ALTER TABLE DETACH for inconsistent indexes

When a partitioned table has an index that doesn't support a constraint,
but a partition has an equivalent index that does, then a DETACH
operation would misbehave: a crash in assertion-enabled systems (because
we fail to find the constraint in the parent that we expect to), or a
broken coninhcount value (-1) in production systems (because we blindly
believe that we've successfully detached the parent).

While we should reject an ATTACH of a partition with such an index, we
have failed to do so in existing releases, so adding an error in stable
releases might break the (unlikely) existing applications that rely on
this behavior.  At this point I don't even want to reject them in
master, because it'd break pg_upgrade if such databases exist, and there
would be no easy way to fix existing databases without expensive index
rebuilds.

(Later on we could add ALTER TABLE ... ADD CONSTRAINT USING INDEX to
partitioned tables, which would allow the user to fix such patterns.  At
that point we could add more restrictions to prevent the problem from
its root.)

Also, add a test case that leaves one table in this condition, so that
we can verify that pg_upgrade continues to work if we later decide to
change the policy on the master branch.

Backpatch to all supported branches.

Co-authored-by: Tender Wang <tndrwang@gmail.com>
Reported-by: Alexander Lakhin <exclusion@gmail.com>
Reviewed-by: Tender Wang <tndrwang@gmail.com>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/18500-62948b6fe5522f56@postgresql.org

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/05748256939b02bb1cfa23c0dea1c2ff02602587

Modified Files
--------------
src/backend/commands/tablecmds.c           | 17 +++++++++---
src/test/regress/expected/sanity_check.out |  2 ++
src/test/regress/input/constraints.source  | 40 ++++++++++++++++++++++++++++
src/test/regress/output/constraints.source | 42 ++++++++++++++++++++++++++++++
4 files changed, 97 insertions(+), 4 deletions(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Add assertion in pgstat_write_statsfile() about processes allowe
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Add ORDER BY to new test query