From 37198369cdd14ecb70e5f28cea9062099bde184d Mon Sep 17 00:00:00 2001 From: ivyazmitinov Date: Wed, 7 Feb 2024 09:54:22 +0100 Subject: [PATCH] Run citus_indent --- src/backend/distributed/shared_library_init.c | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/backend/distributed/shared_library_init.c b/src/backend/distributed/shared_library_init.c index c672c26a3..2a9b73f20 100644 --- a/src/backend/distributed/shared_library_init.c +++ b/src/backend/distributed/shared_library_init.c @@ -1934,18 +1934,18 @@ RegisterCitusConfigVariables(void) NULL, NULL, NULL); DefineCustomIntVariable( - "citus.max_databases_per_worker_tracked", - gettext_noop("Sets the amount of databases per worker tracked."), - gettext_noop( - "This configuration value complements the citus.max_worker_nodes_tracked." - "It should be used when there are more then one database with Citus in cluster," - "and, effectively, limits the size of the hash table with connections per worker + database." - "Currently, it does not affect the connection management logic and serves only statistical purposes."), - &MaxDatabasesPerWorkerNodesTracked, - 1, 1, INT_MAX, - PGC_POSTMASTER, - GUC_STANDARD, - NULL, NULL, NULL); + "citus.max_databases_per_worker_tracked", + gettext_noop("Sets the amount of databases per worker tracked."), + gettext_noop( + "This configuration value complements the citus.max_worker_nodes_tracked." + "It should be used when there are more then one database with Citus in cluster," + "and, effectively, limits the size of the hash table with connections per worker + database." + "Currently, it does not affect the connection management logic and serves only statistical purposes."), + &MaxDatabasesPerWorkerNodesTracked, + 1, 1, INT_MAX, + PGC_POSTMASTER, + GUC_STANDARD, + NULL, NULL, NULL); DefineCustomIntVariable( "citus.max_high_priority_background_processes", @@ -1973,16 +1973,16 @@ RegisterCitusConfigVariables(void) NULL, NULL, NULL); DefineCustomIntVariable( - "citus.max_maintenance_shared_pool_size", - gettext_noop("Similar to citus.max_shared_pool_size, but applies to connections " - "for maintenance operations only." - "Setting it to 0 or -1 disables maintenance connection throttling."), - NULL, - &MaxMaintenanceSharedPoolSize, - 5, -1, INT_MAX, - PGC_SIGHUP, - GUC_SUPERUSER_ONLY, - NULL, NULL, NULL); + "citus.max_maintenance_shared_pool_size", + gettext_noop("Similar to citus.max_shared_pool_size, but applies to connections " + "for maintenance operations only." + "Setting it to 0 or -1 disables maintenance connection throttling."), + NULL, + &MaxMaintenanceSharedPoolSize, + 5, -1, INT_MAX, + PGC_SIGHUP, + GUC_SUPERUSER_ONLY, + NULL, NULL, NULL); DefineCustomIntVariable( "citus.max_matview_size_to_auto_recreate",