8000 GUC description improvements for clarity · Giperboloid/postgres@38f36aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 38f36aa

Browse files
committed
GUC description improvements for clarity
1 parent 1273a15 commit 38f36aa

File tree

1 file changed

+3
-4
lines changed
  • src/backend/utils/misc

1 file changed

+3
-4
lines changed

src/backend/utils/misc/guc.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2888,7 +2888,7 @@ static struct config_int ConfigureNamesInt[] =
28882888

28892889
{
28902890
{"wal_skip_threshold", PGC_USERSET, WAL_SETTINGS,
2891-
gettext_noop("Size of new file to fsync instead of writing WAL."),
2891+
gettext_noop("Minimum size of new file to fsync instead of writing WAL."),
28922892
NULL,
28932893
GUC_UNIT_KB
28942894
},
@@ -3843,9 +3843,8 @@ static struct config_real ConfigureNamesReal[] =
38433843

38443844
{
38453845
{"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN,
3846-
gettext_noop("Sets the fraction of transactions to log for new transactions."),
3847-
gettext_noop("Logs all statements from a fraction of transactions. "
3848-
"Use a value between 0.0 (never log) and 1.0 (log all "
3846+
gettext_noop("Sets the fraction of transactions from which to log all statements."),
3847+
gettext_noop("Use a value between 0.0 (never log) and 1.0 (log all "
38493848
"statements for all transactions).")
38503849
},
38513850
&log_xact_sample_rate,

0 commit comments

Comments
 (0)
0