Remove ATT_TABLE for ALTER TABLE ... ATTACH/DETACH
authorMichael Paquier <michael@paquier.xyz>
Mon, 23 Sep 2024 23:59:08 +0000 (08:59 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 23 Sep 2024 23:59:08 +0000 (08:59 +0900)
commitbbba59e69a56e1622e270f5e47b402c3a904cefc
tree3d6327980c526a2634baabd827c26926be4c6c9e
parent75240f65e700d7d157be27653c70fe75108f25c1
Remove ATT_TABLE for ALTER TABLE ... ATTACH/DETACH

Attempting these commands for a non-partitioned table would result in a
failure when creating the relation in transformPartitionCmd().  This
gives the possibility to throw an error earlier with a much better error
message, thanks to d69a3f4d70b7.

The extra test cases are from me.  Note that FINALIZE uses a different
subcommand and it had no coverage for its failure path with
non-partitioned tables.

Author: Álvaro Herrera, Michael Paquier
Reviewed-by: Nathan Bossart
Discussion: https://postgr.es/m/202409190803.tnis52adt2n5@alvherre.pgsql
src/backend/commands/tablecmds.c
src/test/regress/expected/alter_table.out
src/test/regress/sql/alter_table.sql