BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE
Дата
Msg-id 17576-8d57c13422ff75cb@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: [External] Re: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: BUG #17576: Event_trigger ddl_command_end not firing during CREATE PROCEDURE