PG-362: pgsm_normalized_query needs to be 0 by default. (#253)

pg_stat_monitor.pgsm_normalized_query needs to be 0 by default because
people will get Query examples. This is one of the main user-faced
advantages of pgsm over pgss (pg_stat_statements).
This commit is contained in:
Ibrar Ahmed
2022-06-09 16:13:58 +05:00
committed by GitHub
parent 1b89fa1814
commit d5ce83738f
25 changed files with 109 additions and 161 deletions

View File

@@ -14,7 +14,7 @@ SELECT 1 AS num;
SELECT query FROM pg_stat_monitor ORDER BY query COLLATE "C";
query
--------------------------------------------------------------
SELECT $1 AS num
SELECT 1 AS num
SELECT pg_stat_monitor_reset()
SELECT query FROM pg_stat_monitor ORDER BY query COLLATE "C"
(3 rows)