Reset relhassubclass upon attaching table as a partition
authorAlvaro Herrera <[email protected]>
Wed, 24 Jul 2024 10:38:18 +0000 (12:38 +0200)
committerAlvaro Herrera <[email protected]>
Wed, 24 Jul 2024 10:38:18 +0000 (12:38 +0200)
commit08b6a9ecf922dc7e4a39bcb88ca568f515a7e93b
tree9bf07875c52cc417688fc4acf08996c31f9514f9
parent878e8c6be7ab2523b3dcbe238578e95162f521e9
Reset relhassubclass upon attaching table as a partition

We don't allow inheritance parents as partitions, and have checks to
prevent this; but if a table _was_ in the past an inheritance parents
and all their children are removed, the pg_class.relhassubclass flag
may remain set, which confuses the partition pruning code (most
obviously, it results in an assertion failure; in production builds it
may be worse.)

Fix by resetting relhassubclass on attach.

Backpatch to all supported versions.

Reported-by: Alexander Lakhin <[email protected]>
Reviewed-by: Tom Lane <[email protected]>
Discussion: https://postgr.es/m/18550-d5e047e9a897a889@postgresql.org
src/backend/catalog/heap.c
src/test/regress/expected/alter_table.out
src/test/regress/sql/alter_table.sql