diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-05-05 08:18:22 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-05-05 08:18:22 +0200 |
commit | 38f36aad8c55c8f91e3fb8720fae1847c8fa0552 (patch) | |
tree | 4fb854b5d1a0028cb0da54ccfb6f2e26d4433562 /src | |
parent | 1273a15bf91fa322915e32d3b6dc6ec916397268 (diff) | |
download | postgresql-38f36aad8c55c8f91e3fb8720fae1847c8fa0552.tar.gz postgresql-38f36aad8c55c8f91e3fb8720fae1847c8fa0552.zip |
GUC description improvements for clarity
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index b130874bdc7..f2c7c2486b0 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2888,7 +2888,7 @@ static struct config_int ConfigureNamesInt[] = { {"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, GUC_UNIT_KB }, @@ -3843,9 +3843,8 @@ static struct config_real ConfigureNamesReal[] = { {"log_transaction_sample_rate", PGC_SUSET, LOGGING_WHEN, - 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 " + gettext_noop("Sets the fraction of transactions from which to log all statements."), + gettext_noop("Use a value between 0.0 (never log) and 1.0 (log all " "statements for all transactions).") }, &log_xact_sample_rate, |