1
0
mirror of https://github.com/google/nomulus synced 2025-12-23 06:15:42 +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:
gbrodman
2025-02-06 15:39:59 -05:00
committed by GitHub
parent 8a36fb5f1f
commit 96a864dbd6

View File

@@ -1,3 +1,5 @@
CREATE EXTENSION IF NOT EXISTS pgaudit WITH SCHEMA public;
COMMENT ON EXTENSION pgaudit IS 'provides auditing functionality';
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';