Invalidate partitions of table being attached/detached
authorAlvaro Herrera <[email protected]>
Mon, 18 Oct 2021 22:08:25 +0000 (19:08 -0300)
committerAlvaro Herrera <[email protected]>
Mon, 18 Oct 2021 22:08:25 +0000 (19:08 -0300)
Failing to do that, any direct inserts/updates of those partitions
would fail to enforce the correct constraint, that is, one that
considers the new partition constraint of their parent table.

Backpatch to 10.

Reported by: Hou Zhijie <[email protected]>
Author: Amit Langote <[email protected]>
Author: Álvaro Herrera <[email protected]>
Reviewed-by: Nitin Jadhav <[email protected]>
Reviewed-by: Pavel Borisov <[email protected]>
Discussion: https://postgr.es/m/OS3PR01MB5718DA1C4609A25186D1FBF194089%40OS3PR01MB5718.jpnprd01.prod.outlook.com

src/backend/commands/tablecmds.c
src/test/regress/expected/alter_table.out
src/test/regress/sql/alter_table.sql

index 26d76d90db98cf02f5b76fb86c234821bbf7cd03..7163ad54263fd9144457fee0d0f2e3f816881b84 100644 (file)
@@ -13991,6 +13991,22 @@ ATExecAttachPartition(List **wqueue, Relation rel, PartitionCmd *cmd)
 
    ObjectAddressSet(address, RelationRelationId, RelationGetRelid(attachrel));
 
+   /*
+    * If the partition we just attached is partitioned itself, invalidate
+    * relcache for all descendent partitions too to ensure that their
+    * rd_partcheck expression trees are rebuilt; partitions already locked
+    * at the beginning of this function.
+    */
+   if (attachrel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
+   {
+       ListCell *l;
+
+       foreach(l, attachrel_children)
+       {
+           CacheInvalidateRelcacheByRelid(lfirst_oid(l));
+       }
+   }
+
    /* keep our lock until commit */
    heap_close(attachrel, NoLock);
 
@@ -14054,6 +14070,26 @@ ATExecDetachPartition(Relation rel, RangeVar *name)
     */
    CacheInvalidateRelcache(rel);
 
+   /*
+    * If the partition we just detached is partitioned itself, invalidate
+    * relcache for all descendent partitions too to ensure that their
+    * rd_partcheck expression trees are rebuilt; must lock partitions
+    * before doing so, using the same lockmode as what partRel has been
+    * locked with by the caller.
+    */
+   if (partRel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
+   {
+       List   *children;
+       ListCell *cell;
+
+       children = find_all_inheritors(RelationGetRelid(partRel),
+                                      AccessExclusiveLock, NULL);
+       foreach(cell, children)
+       {
+           CacheInvalidateRelcacheByRelid(lfirst_oid(cell));
+       }
+   }
+
    ObjectAddressSet(address, RelationRelationId, RelationGetRelid(partRel));
 
    /* keep our lock until commit */
index f307c479dcd95a2e1b560cee558dfc43fc19c394..c22ae567549c2955a98a83797e51413e73407520 100644 (file)
@@ -3856,3 +3856,23 @@ select indexrelid::regclass, indisclustered from pg_index
 (2 rows)
 
 drop table alttype_cluster;
+--
+-- Check that attaching or detaching a partitioned partition correctly leads
+-- to its partitions' constraint being updated to reflect the parent's
+-- newly added/removed constraint
+create table target_parted (a int, b int) partition by list (a);
+create table attach_parted (a int, b int) partition by list (b);
+create table attach_parted_part1 partition of attach_parted for values in (1);
+-- insert a row directly into the leaf partition so that its partition
+-- constraint is built and stored in the relcache
+insert into attach_parted_part1 values (1, 1);
+-- the following better invalidate the partition constraint of the leaf
+-- partition too...
+alter table target_parted attach partition attach_parted for values in (1);
+-- ...such that the following insert fails
+insert into attach_parted_part1 values (2, 1);
+ERROR:  new row for relation "attach_parted_part1" violates partition constraint
+DETAIL:  Failing row contains (2, 1).
+-- ...and doesn't when the partition is detached along with its own partition
+alter table target_parted detach partition attach_parted;
+insert into attach_parted_part1 values (2, 1);
index b7f5acca8cc0244e0018a8c0fda58057eea943e4..67c7fa131efccdd2009ecea31fa5ca0ef64daff7 100644 (file)
@@ -2510,3 +2510,22 @@ select indexrelid::regclass, indisclustered from pg_index
   where indrelid = 'alttype_cluster'::regclass
   order by indexrelid::regclass::text;
 drop table alttype_cluster;
+
+--
+-- Check that attaching or detaching a partitioned partition correctly leads
+-- to its partitions' constraint being updated to reflect the parent's
+-- newly added/removed constraint
+create table target_parted (a int, b int) partition by list (a);
+create table attach_parted (a int, b int) partition by list (b);
+create table attach_parted_part1 partition of attach_parted for values in (1);
+-- insert a row directly into the leaf partition so that its partition
+-- constraint is built and stored in the relcache
+insert into attach_parted_part1 values (1, 1);
+-- the following better invalidate the partition constraint of the leaf
+-- partition too...
+alter table target_parted attach partition attach_parted for values in (1);
+-- ...such that the following insert fails
+insert into attach_parted_part1 values (2, 1);
+-- ...and doesn't when the partition is detached along with its own partition
+alter table target_parted detach partition attach_parted;
+insert into attach_parted_part1 values (2, 1);