From 1219c4c852e35e3c1da0cad4d715b7c7e79a4d2f Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Thu, 13 Apr 2023 13:39:04 +0300 Subject: [PATCH] enable for all tests --- src/backend/distributed/shared_library_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/distributed/shared_library_init.c b/src/backend/distributed/shared_library_init.c index e7fedd1d8..e3edc51f9 100644 --- a/src/backend/distributed/shared_library_init.c +++ b/src/backend/distributed/shared_library_init.c @@ -2391,7 +2391,7 @@ RegisterCitusConfigVariables(void) gettext_noop("Number of tenants to be shown in citus_stat_tenants."), NULL, &StatTenantsLimit, - 100, 1, 10000, + 1, 1, 10000, PGC_POSTMASTER, GUC_STANDARD, NULL, NULL, NULL); @@ -2412,7 +2412,7 @@ RegisterCitusConfigVariables(void) "statistics in citus_stat_tenants."), NULL, &StatTenantsPeriod, - 60, 1, 60 * 60 * 24, + 1, 1, 60 * 60 * 24, PGC_USERSET, GUC_STANDARD, NULL, NULL, NULL); @@ -2424,7 +2424,7 @@ RegisterCitusConfigVariables(void) "Disables when set to 'none'. Disabling can be useful for " "avoiding extra CPU cycles needed for the calculations."), &StatTenantsTrack, - STAT_TENANTS_TRACK_NONE, + STAT_TENANTS_TRACK_ALL, stat_tenants_track_options, PGC_SUSET, GUC_STANDARD,