]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix pg_identify_object_as_address() with event triggers
authorMichael Paquier <michael@paquier.xyz>
Wed, 28 Apr 2021 02:18:24 +0000 (11:18 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 28 Apr 2021 02:18:24 +0000 (11:18 +0900)
commit5b717e13c90bf281b7cc65eefd032c8bf54c3448
treeb7be437066eb780072d0dc7ccfb0b0657ff4d0b3
parent4b610547c27a93289716e09721bbb4e33e8fdecf
Fix pg_identify_object_as_address() with event triggers

Attempting to use this function with event triggers failed, as, since
its introduction in a676201, this code has never associated an object
name with event triggers.  This addresses the failure by adding the
event trigger name to the set defining its object address.

Note that regression tests are added within event_trigger and not
object_address to avoid issues with concurrent connections in parallel
schedules.

Author: Joel Jacobson
Discussion: https://postgr.es/m/3c905e77-a026-46ae-8835-c3f6cd1d24c8@www.fastmail.com
Backpatch-through: 9.6
src/backend/catalog/objectaddress.c
src/test/regress/expected/event_trigger.out
src/test/regress/sql/event_trigger.sql