Skip to content

Commit e527a99

Browse files
committed
Some copy-editing of GUC descriptions
1 parent d422a2a commit e527a99

File tree

1 file changed

+7
-7
lines changed
  • src/backend/utils/misc

1 file changed

+7
-7
lines changed

src/backend/utils/misc/guc.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ static struct config_bool ConfigureNamesBool[] =
11011101
},
11021102
{
11031103
{"enable_partition_pruning", PGC_USERSET, QUERY_TUNING_METHOD,
1104-
gettext_noop("Enables plan-time and run-time partition pruning."),
1104+
gettext_noop("Enables plan-time and execution-time partition pruning."),
11051105
gettext_noop("Allows the query planner and executor to compare partition "
11061106
"bounds to conditions in the query to determine which "
11071107
"partitions must be scanned."),
@@ -1945,7 +1945,7 @@ static struct config_bool ConfigureNamesBool[] =
19451945
{
19461946
{"parallel_leader_participation", PGC_USERSET, RESOURCES_ASYNCHRONOUS,
19471947
gettext_noop("Controls whether Gather and Gather Merge also run subplans."),
1948-
gettext_noop("Should gather nodes also run subplans, or just gather tuples?"),
1948+
gettext_noop("Should gather nodes also run subplans or just gather tuples?"),
19491949
GUC_EXPLAIN
19501950
},
19511951
&parallel_leader_participation,
@@ -1966,7 +1966,7 @@ static struct config_bool ConfigureNamesBool[] =
19661966

19671967
{
19681968
{"jit_debugging_support", PGC_SU_BACKEND, DEVELOPER_OPTIONS,
1969-
gettext_noop("Register JIT compiled function with debugger."),
1969+
gettext_noop("Register JIT-compiled functions with debugger."),
19701970
NULL,
19711971
GUC_NOT_IN_SAMPLE
19721972
},
@@ -2005,7 +2005,7 @@ static struct config_bool ConfigureNamesBool[] =
20052005

20062006
{
20072007
{"jit_profiling_support", PGC_SU_BACKEND, DEVELOPER_OPTIONS,
2008-
gettext_noop("Register JIT compiled function with perf profiler."),
2008+
gettext_noop("Register JIT-compiled functions with perf profiler."),
20092009
NULL,
20102010
GUC_NOT_IN_SAMPLE
20112011
},
@@ -3546,7 +3546,7 @@ static struct config_real ConfigureNamesReal[] =
35463546

35473547
{
35483548
{"jit_optimize_above_cost", PGC_USERSET, QUERY_TUNING_COST,
3549-
gettext_noop("Optimize JITed functions if query is more expensive."),
3549+
gettext_noop("Optimize JIT-compiled functions if query is more expensive."),
35503550
gettext_noop("-1 disables optimization."),
35513551
GUC_EXPLAIN
35523552
},
@@ -3716,7 +3716,7 @@ static struct config_real ConfigureNamesReal[] =
37163716

37173717
{
37183718
{"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN,
3719-
gettext_noop("Set the fraction of transactions to log for new transactions."),
3719+
gettext_noop("Sets the fraction of transactions to log for new transactions."),
37203720
gettext_noop("Logs all statements from a fraction of transactions. "
37213721
"Use a value between 0.0 (never log) and 1.0 (log all "
37223722
"statements for all transactions).")
@@ -4714,7 +4714,7 @@ static struct config_enum ConfigureNamesEnum[] =
47144714

47154715
{
47164716
{"wal_level", PGC_POSTMASTER, WAL_SETTINGS,
4717-
gettext_noop("Set the level of information written to the WAL."),
4717+
gettext_noop("Sets the level of information written to the WAL."),
47184718
NULL
47194719
},
47204720
&wal_level,

0 commit comments

Comments
 (0)