Make ALTER TRIGGER RENAME consistent for partitioned tables
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 22 Jul 2021 22:33:47 +0000 (18:33 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 22 Jul 2021 22:33:47 +0000 (18:33 -0400)
commit80ba4bb383538a2ee846fece6a7b8da9518b6866
tree02012f820704c1e726a1774b46a926330e31f9a5
parent73c5d2bfee2907b7f158485a531f00ba61b054f7
Make ALTER TRIGGER RENAME consistent for partitioned tables

Renaming triggers on partitioned tables had two problems: first,
it did not recurse to renaming the triggers on the partitions; and
second, it failed to prohibit renaming clone triggers.  Having triggers
with different names in partitions is pointless, and furthermore pg_dump
would not preserve names for partitions anyway.

Not backpatched -- making the ALTER TRIGGER throw an error in stable
versions might cause problems for existing scripts.

Co-authored-by: Arne Roland <A.Roland@index.de>
Co-authored-by: Álvaro Herrera <alvherre@alvh.no-ip.org>
Reviewed-by: Zhihong Yu <zyu@yugabyte.com>
Discussion: https://postgr.es/m/d0fd7040c2fb4de1a111b9d9ccc456b8@index.de
doc/src/sgml/ref/alter_trigger.sgml
src/backend/commands/trigger.c
src/test/regress/expected/triggers.out
src/test/regress/sql/triggers.sql