mirror of https://github.com/citusdata/citus.git
enable for all tests
parent
3286ec59e9
commit
1219c4c852
|
@ -2391,7 +2391,7 @@ RegisterCitusConfigVariables(void)
|
||||||
gettext_noop("Number of tenants to be shown in citus_stat_tenants."),
|
gettext_noop("Number of tenants to be shown in citus_stat_tenants."),
|
||||||
NULL,
|
NULL,
|
||||||
&StatTenantsLimit,
|
&StatTenantsLimit,
|
||||||
100, 1, 10000,
|
1, 1, 10000,
|
||||||
PGC_POSTMASTER,
|
PGC_POSTMASTER,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
@ -2412,7 +2412,7 @@ RegisterCitusConfigVariables(void)
|
||||||
"statistics in citus_stat_tenants."),
|
"statistics in citus_stat_tenants."),
|
||||||
NULL,
|
NULL,
|
||||||
&StatTenantsPeriod,
|
&StatTenantsPeriod,
|
||||||
60, 1, 60 * 60 * 24,
|
1, 1, 60 * 60 * 24,
|
||||||
PGC_USERSET,
|
PGC_USERSET,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
@ -2424,7 +2424,7 @@ RegisterCitusConfigVariables(void)
|
||||||
"Disables when set to 'none'. Disabling can be useful for "
|
"Disables when set to 'none'. Disabling can be useful for "
|
||||||
"avoiding extra CPU cycles needed for the calculations."),
|
"avoiding extra CPU cycles needed for the calculations."),
|
||||||
&StatTenantsTrack,
|
&StatTenantsTrack,
|
||||||
STAT_TENANTS_TRACK_NONE,
|
STAT_TENANTS_TRACK_ALL,
|
||||||
stat_tenants_track_options,
|
stat_tenants_track_options,
|
||||||
PGC_SUSET,
|
PGC_SUSET,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
|
|
Loading…
Reference in New Issue