| From: | Michael Paquier <michael(at)paquier(dot)xyz> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Allow ALTER INDEX .. ATTACH PARTITION to validate a parent index |
| Date: | 2026-04-22 01:35:22 |
| Message-ID: | E1wFMUr-0025HA-1G@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Allow ALTER INDEX .. ATTACH PARTITION to validate a parent index
This commit tweaks ALTER INDEX .. ATTACH PARTITION to attempt a
validation of a parent index in the case where an index is already
attached but the parent is not yet valid. This occurs in cases where a
parent index was created invalid such as with CREATE INDEX ONLY, but was
left invalid after an invalid child index was attached (partitioned
indexes set indisvalid to false if at least one partition is
!indisvalid, indisvalid is true in a partitioned table iff all
partitions are indisvalid). This could leave a partition tree in a
situation where a user could not bring the parent index back to valid
after fixing the child index, as there is no built-in mechanism to do
so. This commit relies on the fact that repeated ATTACH PARTITION
commands on the same index silently succeed.
An invalid parent index is more than just a passive issue. It causes
for example ON CONFLICT on a partitioned table if the invalid parent
index is used to enforce a unique constraint.
Some test cases are added to track some of problematic patterns, using a
set of partition trees with combinations of invalid indexes and ATTACH
PARTITION.
Reported-by: Mohamed Ali <moali(dot)pg(at)gmail(dot)com>
Author: Sami Imseih <sanmimseih(at)gmail(dot)com>
Reviewed-by: Michael Paquier <michael(at)paquier(dot)xyz>
Reviewed-by: Haibo Yan <tristan(dot)yim(at)gmail(dot)com>
Discussion: http://postgr.es/m/CAGnOmWqi1D9ycBgUeOGf6mOCd2Dcf=6sKhbf4sHLs5xAcKVCMQ@mail.gmail.com
Backpatch-through: 14
Branch
------
REL_16_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/313355d68016a4c83bcbcb16a743dc7a8e54f8a1
Modified Files
--------------
src/backend/commands/tablecmds.c | 13 +++-
src/test/regress/expected/indexing.out | 105 +++++++++++++++++++++++++++++++++
src/test/regress/sql/indexing.sql | 59 ++++++++++++++++++
3 files changed, 176 insertions(+), 1 deletion(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Amit Langote | 2026-04-22 03:08:25 | pgsql: Fix some const qualifier use in ri_triggers.c |
| Previous Message | Michael Paquier | 2026-04-22 01:35:21 | pgsql: Allow ALTER INDEX .. ATTACH PARTITION to validate a parent index |