-
In contrib/pg_stat_statements, disallow
the pg_read_all_stats role from
pg_read_all_stats is only meant to grant permission
to read statistics, not to change them, so this grant was incorrect.
+
+
To cause this change to take effect, run ALTER EXTENSION
pg_stat_statements UPDATE in each database
where pg_stat_statements has been installed.
+ In contrib/pg_stat_statements, disallow
+ the pg_read_all_stats role from
+ executing pg_stat_statements_reset()
+ (Haribabu Kommi)
+
+
+ pg_read_all_stats is only meant to grant permission
+ to read statistics, not to change them, so this grant was incorrect.
+
+
+ To cause this change to take effect, run ALTER EXTENSION
+ pg_stat_statements UPDATE in each database
+ where pg_stat_statements has been installed.
+ (A database freshly created in 11.0 should not need this, but a
+ database upgraded from a previous release probably still contains
+ the old version of pg_stat_statements. The
+ UPDATE command is harmless if the module was
+ already updated.)
+
+
+
+
+