BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE
Date
Msg-id 17576-8d57c13422ff75cb@postgresql.org
Whole thread Raw
Responses Re: BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17576
Logged by:          Gabriel Rodrigues Franco
Email address:      gabriel.franco@quintoandar.com.br
PostgreSQL version: 13.4
Operating system:   Its and Amazon RDS
Description:

Hello PostgreSQL team,

I have a FUNCTION that needs to be executed after any object creation
(tables, functions, procedures...), and it is triggering as expected for any
DDL operation against tables and functions, but not for PROCEDURES.

CREATE EVENT TRIGGER tg_change_obj_owner ON ddl_command_end
    EXECUTE FUNCTION public.pg_change_obj_owner();

I saw in the Matrix that this was not supposed to happen:
https://www.postgresql.org/docs/current/event-trigger-matrix.html

Could you help me?


pgsql-bugs by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: [External] Re: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE
Next
From: "David G. Johnston"
Date:
Subject: Re: BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE