We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0739dec commit a79d1b2Copy full SHA for a79d1b2
audit.sql
@@ -244,8 +244,8 @@ CREATE OR REPLACE VIEW audit.tableslist AS
244
SELECT DISTINCT triggers.trigger_schema AS schema,
245
triggers.event_object_table AS auditedtable
246
FROM information_schema.triggers
247
- WHERE triggers.trigger_name::text = 'audit_trigger_row'::text
248
- ORDER BY schema, auditedtable;
+ WHERE triggers.trigger_name::text IN ('audit_trigger_row'::text, 'audit_trigger_stm'::text)
+ORDER BY schema, auditedtable;
249
250
COMMENT ON VIEW audit.tableslist IS $body$
251
View showing all tables with auditing set up. Ordered by schema, then table.
0 commit comments