How to log data change in postgresql?

后端 未结 2 1025
盖世英雄少女心
盖世英雄少女心 2021-02-06 00:50

This question may seem to be a possible duplicate of some other questions that are related to this topic. I\'ve found some similar questions(some questions were asked years back

2条回答
  •  别那么骄傲
    2021-02-06 00:59

    Very generic trigger function, found there: https://www.cybertec-postgresql.com/en/tracking-changes-in-postgresql/

    Table to store the history:

    CREATE SCHEMA logging;
    CREATE TABLE logging.t_history (
            id             serial,
            tstamp         timestamp DEFAULT now(),
            schemaname     text,
            tabname        text,
            operation      text,
            who            text DEFAULT current_user,
            new_val        json,
            old_val        json
    );
    

    The trigger:

    CREATE FUNCTION change_trigger() RETURNS trigger AS $$
           BEGIN
             IF TG_OP = 'INSERT'
             THEN INSERT INTO logging.t_history (
                    tabname, schemaname, operation, new_val
                  ) VALUES (
                    TG_RELNAME, TG_TABLE_SCHEMA, TG_OP, row_to_json(NEW)
                  );
               RETURN NEW;
             ELSIF  TG_OP = 'UPDATE'
             THEN
               INSERT INTO logging.t_history (
                 tabname, schemaname, operation, new_val, old_val
               )
               VALUES (TG_RELNAME, TG_TABLE_SCHEMA, TG_OP, row_to_json(NEW), row_to_json(OLD));
               RETURN NEW;
             ELSIF TG_OP = 'DELETE'
             THEN
               INSERT INTO logging.t_history
                 (tabname, schemaname, operation, old_val)
                 VALUES (
                   TG_RELNAME, TG_TABLE_SCHEMA, TG_OP, row_to_json(OLD)
                 );
                 RETURN OLD;
             END IF;
           END;
    $$ LANGUAGE 'plpgsql' SECURITY DEFINER;
    

    Apply the trigger:

    CREATE TRIGGER t BEFORE INSERT OR UPDATE OR DELETE ON your_table
            FOR EACH ROW EXECUTE PROCEDURE change_trigger();
    

提交回复
热议问题