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.pull/129/head
parent
693838c979
commit
fa55eb333d
|
@ -411,7 +411,7 @@ void pgss_startup(void);
|
|||
#define PGSM_HISTOGRAM_MAX get_conf(8)->guc_variable
|
||||
#define PGSM_HISTOGRAM_BUCKETS get_conf(9)->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_TRACK_PLANNING get_conf(13)->guc_variable
|
||||
|
||||
|
|
Loading…
Reference in New Issue