Introduce ATT_PARTITIONED_TABLE in tablecmds.c

Michael Paquier <michael@paquier.xyz>

Commit: d69a3f4d70b7cab328ba5d0944450d87f39c2eb4
Author: Michael Paquier <michael@paquier.xyz>
Date: 2024-09-19T03:22:56Z
Releases: 18.0
Introduce ATT_PARTITIONED_TABLE in tablecmds.c

Partitioned tables and normal tables have been relying on ATT_TABLE in
ATSimplePermissions() to produce error messages that depend on the
relation's relkind, because both relkinds currently support the same set
of ALTER TABLE subcommands.

A patch to restrict SET LOGGED/UNLOGGED for partitioned tables is under
discussion, and introducing ATT_PARTITIONED_TABLE makes subcommand
restrictions for partitioned tables easier to deal with, so let's add
one.  There is no functional change.

Author: Michael Paquier
Reviewed-by: Nathan Bossart
Discussion: https://postgr.es/m/Zt6cDnwSvnuLLnak@paquier.xyz

Files

PathChange+/−
src/backend/commands/tablecmds.c modified +96 −45

Discussion