1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

GUC description improvements for clarity

This commit is contained in:
Peter Eisentraut 2021-05-05 08:18:22 +02:00
parent 1273a15bf9
commit 38f36aad8c

View File

@ -2888,7 +2888,7 @@ static struct config_int ConfigureNamesInt[] =
{ {
{"wal_skip_threshold", PGC_USERSET, WAL_SETTINGS, {"wal_skip_threshold", PGC_USERSET, WAL_SETTINGS,
gettext_noop("Size of new file to fsync instead of writing WAL."), gettext_noop("Minimum size of new file to fsync instead of writing WAL."),
NULL, NULL,
GUC_UNIT_KB GUC_UNIT_KB
}, },
@ -3843,9 +3843,8 @@ static struct config_real ConfigureNamesReal[] =
{ {
{"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN, {"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN,
gettext_noop("Sets the fraction of transactions to log for new transactions."), gettext_noop("Sets the fraction of transactions from which to log all statements."),
gettext_noop("Logs all statements from a fraction of transactions. " gettext_noop("Use a value between 0.0 (never log) and 1.0 (log all "
"Use a value between 0.0 (never log) and 1.0 (log all "
"statements for all transactions).") "statements for all transactions).")
}, },
&log_xact_sample_rate, &log_xact_sample_rate,