From e527a99055154bb7fe6ed67f0417a67cf11fa056 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 3 Mar 2021 07:14:35 +0100 Subject: [PATCH] Some copy-editing of GUC descriptions --- src/backend/utils/misc/guc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 7167cff7c3..4bcf705a30 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1101,7 +1101,7 @@ static struct config_bool ConfigureNamesBool[] = }, { {"enable_partition_pruning", PGC_USERSET, QUERY_TUNING_METHOD, - gettext_noop("Enables plan-time and run-time partition pruning."), + gettext_noop("Enables plan-time and execution-time partition pruning."), gettext_noop("Allows the query planner and executor to compare partition " "bounds to conditions in the query to determine which " "partitions must be scanned."), @@ -1945,7 +1945,7 @@ static struct config_bool ConfigureNamesBool[] = { {"parallel_leader_participation", PGC_USERSET, RESOURCES_ASYNCHRONOUS, gettext_noop("Controls whether Gather and Gather Merge also run subplans."), - gettext_noop("Should gather nodes also run subplans, or just gather tuples?"), + gettext_noop("Should gather nodes also run subplans or just gather tuples?"), GUC_EXPLAIN }, ¶llel_leader_participation, @@ -1966,7 +1966,7 @@ static struct config_bool ConfigureNamesBool[] = { {"jit_debugging_support", PGC_SU_BACKEND, DEVELOPER_OPTIONS, - gettext_noop("Register JIT compiled function with debugger."), + gettext_noop("Register JIT-compiled functions with debugger."), NULL, GUC_NOT_IN_SAMPLE }, @@ -2005,7 +2005,7 @@ static struct config_bool ConfigureNamesBool[] = { {"jit_profiling_support", PGC_SU_BACKEND, DEVELOPER_OPTIONS, - gettext_noop("Register JIT compiled function with perf profiler."), + gettext_noop("Register JIT-compiled functions with perf profiler."), NULL, GUC_NOT_IN_SAMPLE }, @@ -3546,7 +3546,7 @@ static struct config_real ConfigureNamesReal[] = { {"jit_optimize_above_cost", PGC_USERSET, QUERY_TUNING_COST, - gettext_noop("Optimize JITed functions if query is more expensive."), + gettext_noop("Optimize JIT-compiled functions if query is more expensive."), gettext_noop("-1 disables optimization."), GUC_EXPLAIN }, @@ -3716,7 +3716,7 @@ static struct config_real ConfigureNamesReal[] = { {"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN, - gettext_noop("Set the fraction of transactions to log for new transactions."), + gettext_noop("Sets the fraction of transactions to log for new transactions."), gettext_noop("Logs all statements from a fraction of transactions. " "Use a value between 0.0 (never log) and 1.0 (log all " "statements for all transactions).") @@ -4714,7 +4714,7 @@ static struct config_enum ConfigureNamesEnum[] = { {"wal_level", PGC_POSTMASTER, WAL_SETTINGS, - gettext_noop("Set the level of information written to the WAL."), + gettext_noop("Sets the level of information written to the WAL."), NULL }, &wal_level,