From: Michael Paquier Date: Fri, 1 May 2026 04:10:35 +0000 (+0900) Subject: doc: Mention validation attempt during ALTER INDEX .. ATTACH PARTITION X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0916282a0606fb788634738bab5b9f0bbde2aa08;p=thirdparty%2Fpostgresql.git doc: Mention validation attempt during ALTER INDEX .. ATTACH PARTITION Since 9d3e094f12, the command tries to validate the parent index of the named index, if invalid. The documentation did not mention this behavior, which could be confusing. Author: Mohamed ALi Discussion: https://postgr.es/m/CAGnOmWpHu25_LpT=zv7KtetQhqV1QEZzFYLd_TDyOLu1Od9fpw@mail.gmail.com Backpatch-through: 14 --- diff --git a/doc/src/sgml/ref/alter_index.sgml b/doc/src/sgml/ref/alter_index.sgml index 1d42d05d858..fb7096c16ea 100644 --- a/doc/src/sgml/ref/alter_index.sgml +++ b/doc/src/sgml/ref/alter_index.sgml @@ -97,6 +97,11 @@ ALTER INDEX ALL IN TABLESPACE name index cannot be dropped by itself, and will automatically be dropped if its parent index is dropped. + + If the named index is already attached to the altered index, the + command will attempt to validate the parent index if the parent is + currently invalid. +