mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Add macro for maximum statistics target
The number of places where 10000 was hardcoded had grown a bit beyond the comfort level. Introduce a macro MAX_STATISTICS_TARGET instead. Reviewed-by: Tomas Vondra <tomas.vondra@enterprisedb.com> Discussion: https://www.postgresql.org/message-id/flat/d6069765-5971-04d3-c10d-e4f7b2e9c459%40eisentraut.org
This commit is contained in:
@ -2035,7 +2035,7 @@ struct config_int ConfigureNamesInt[] =
|
||||
"column-specific target set via ALTER TABLE SET STATISTICS.")
|
||||
},
|
||||
&default_statistics_target,
|
||||
100, 1, 10000,
|
||||
100, 1, MAX_STATISTICS_TARGET,
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user