PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come ottenere il testo SQL dal trigger di eventi Postgres

A partire da PostgreSQL 9.5, funzione pg_event_trigger_ddl_commands() è disponibile per ddl_command_end trigger di eventi. Utilizzando il TAG filtro, può essere utilizzato per elaborare qualsiasi tabella ALTERed. object_identity (o objid ) può essere utilizzato per risolvere il problema originale di sapere quale tabella è stata modificata. Per quanto riguarda l'ottenimento del comando completo, è disponibile anche questo, ma è di tipo interno pg_ddl_command .

CREATE TABLE t (n INT);

CREATE FUNCTION notice_event() RETURNS event_trigger AS $$
DECLARE r RECORD;
BEGIN
    FOR r IN SELECT * FROM pg_event_trigger_ddl_commands() LOOP
        RAISE NOTICE 'caught % event on %', r.command_tag, r.object_identity;
    END LOOP;
END;
$$
LANGUAGE plpgsql;

CREATE EVENT TRIGGER tr_notice_alter_table
  ON ddl_command_end WHEN TAG IN ('ALTER TABLE')
  EXECUTE PROCEDURE notice_event();

ALTER TABLE t ADD c CHAR;

outputs:NOTICE: caught ALTER TABLE event on public.t