mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 05:56:21 +00:00
PG-382: Adjust the maximum value for histogram buckets.
There was no maximum limit set for the number of maximum histograms bucket, which can lead to a crash in case of higher value. PG-382: Adjust the maximum value for histogram buckets. Fix the regression issue related to GUC and set the maximum buckets value correctly. PG-382: Adjust the maximum value for histogram buckets. Fix the TAP test cases.
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
|
||||
#define JUMBLE_SIZE 1024 /* query serialization buffer size */
|
||||
|
||||
#define MAX_RESPONSE_BUCKET 10
|
||||
#define MAX_RESPONSE_BUCKET 50
|
||||
#define INVALID_BUCKET_ID -1
|
||||
#define MAX_REL_LEN 255
|
||||
#define MAX_BUCKETS 10
|
||||
|
||||
Reference in New Issue
Block a user