mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 14:06:20 +00:00
PG-220: Fix pgsm_overflow_target defaults.
The GUC variable pgsm_overflow_target was pointing to the wrong index (12, pgsm_track_planning) in the "GucVariable conf[MAX_SETTINGS]" array. Adjusted it to the right index, 11.
This commit is contained in:
@@ -411,7 +411,7 @@ void pgss_startup(void);
|
|||||||
#define PGSM_HISTOGRAM_MAX get_conf(8)->guc_variable
|
#define PGSM_HISTOGRAM_MAX get_conf(8)->guc_variable
|
||||||
#define PGSM_HISTOGRAM_BUCKETS get_conf(9)->guc_variable
|
#define PGSM_HISTOGRAM_BUCKETS get_conf(9)->guc_variable
|
||||||
#define PGSM_QUERY_SHARED_BUFFER get_conf(10)->guc_variable
|
#define PGSM_QUERY_SHARED_BUFFER get_conf(10)->guc_variable
|
||||||
#define PGSM_OVERFLOW_TARGET get_conf(12)->guc_variable
|
#define PGSM_OVERFLOW_TARGET get_conf(11)->guc_variable
|
||||||
#define PGSM_QUERY_PLAN get_conf(12)->guc_variable
|
#define PGSM_QUERY_PLAN get_conf(12)->guc_variable
|
||||||
#define PGSM_TRACK_PLANNING get_conf(13)->guc_variable
|
#define PGSM_TRACK_PLANNING get_conf(13)->guc_variable
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user