PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Comment obtenir du texte SQL à partir du déclencheur d'événement Postgres

A partir de PostgreSQL 9.5, fonction pg_event_trigger_ddl_commands() est disponible pour ddl_command_end déclencheurs d'événements. Utilisation du TAG filter, il peut être utilisé pour traiter n'importe quelle table ALTERed. object_identity (ou objid ) peut être utilisé pour résoudre le problème initial de savoir quelle table a été modifiée. Quant à l'obtention de la commande complète, elle est également disponible, mais elle est de type interne 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;

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