blob: 02cf6c0aeb8267a0417223a12d8af75636f91754 [file] [log] [blame]
/*Standby Schedule History*/
CREATE TABLE IF NOT EXISTS STANDBY_SCHEDULE_HISTORY_HIST (HIST_ID serial, operation char(1), stamp timestamp, LIKE STANDBY_SCHEDULE_HISTORY EXCLUDING ALL);
--
-- Create a row in {0}.standby_schedule_history_hist_audit to reflect the operation performed on standby_schedule_history,
-- making use of the special variable TG_OP to work out the operation.
--
CREATE OR REPLACE FUNCTION process_standby_schedule_history_audit() RETURNS TRIGGER AS $object_audit$ BEGIN IF (TG_OP = 'DELETE') THEN INSERT INTO {0}.standby_schedule_history_hist SELECT nextval('standby_schedule_history_hist_hist_id_seq'), 'D', now(), OLD.*; ELSIF (TG_OP = 'UPDATE') THEN INSERT INTO {0}.standby_schedule_history_hist SELECT nextval('standby_schedule_history_hist_hist_id_seq'), 'U', now(), NEW.*; ELSIF (TG_OP = 'INSERT') THEN INSERT INTO {0}.standby_schedule_history_hist SELECT nextval('standby_schedule_history_hist_hist_id_seq'), 'I', now(), NEW.*; END IF; RETURN NULL; END; $object_audit$ LANGUAGE plpgsql;
DROP TRIGGER IF EXISTS standby_schedule_history_audit on {0}.standby_schedule_history;
CREATE TRIGGER standby_schedule_history_audit AFTER INSERT OR UPDATE OR DELETE ON {0}.standby_schedule_history FOR EACH ROW EXECUTE PROCEDURE process_standby_schedule_history_audit();