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.
2 parents b691bdc + c60b4b0 commit 618bd11Copy full SHA for 618bd11
audit.sql
@@ -232,9 +232,9 @@ $body$ LANGUAGE SQL;
232
-- And provide a convenience call wrapper for the simplest case
233
-- of row-level logging with no excluded cols and query logging enabled.
234
--
235
-CREATE OR REPLACE FUNCTION audit.audit_table(target_table regclass) RETURNS void AS $$
+CREATE OR REPLACE FUNCTION audit.audit_table(target_table regclass) RETURNS void AS $body$
236
SELECT audit.audit_table($1, BOOLEAN 't', BOOLEAN 't');
237
-$$ LANGUAGE 'sql';
+$body$ LANGUAGE 'sql';
238
239
COMMENT ON FUNCTION audit.audit_table(regclass) IS $body$
240
Add auditing support to the given table. Row-level changes will be logged with full client query text. No cols are ignored.
0 commit comments