mirror of
https://github.com/google/nomulus
synced 2026-01-03 19:54:18 +00:00
Add pg_stat_statements extension to allowed diffs (#2662)
This is similar to pgaudit in that it doesn't need to exist in the golden file.
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
CREATE EXTENSION IF NOT EXISTS pgaudit WITH SCHEMA public;
|
CREATE EXTENSION IF NOT EXISTS pgaudit WITH SCHEMA public;
|
||||||
COMMENT ON EXTENSION pgaudit IS 'provides auditing functionality';
|
COMMENT ON EXTENSION pgaudit IS 'provides auditing functionality';
|
||||||
SET default_with_oids = false;
|
SET default_with_oids = false;
|
||||||
|
CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public;
|
||||||
|
COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQL statements executed';
|
||||||
|
|||||||
Reference in New Issue
Block a user