aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2022-09-13 12:02:56 +0200
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2022-09-13 12:02:56 +0200
commit892cac91249921af73cfe5a7209b64a16589ae18 (patch)
tree810b90c7f6a366e28b5893ca7ac1d02ac904a1f3
parentf5047c1293acce3c6c3802b06825aa3a9f9aa55a (diff)
downloadpostgresql-892cac91249921af73cfe5a7209b64a16589ae18.tar.gz
postgresql-892cac91249921af73cfe5a7209b64a16589ae18.zip
Improve wal_decode_buffer_size description some more
Per Thomas Munro Discussion: https://postgr.es/m/CA+hUKGJ9wP9kpvgoxHvqA=4g1d9-y_w3LhhdhFVU=mFiqjwHww@mail.gmail.com
-rw-r--r--src/backend/utils/misc/guc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 97f0fb397c6..e798d888579 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -2837,8 +2837,8 @@ static struct config_int ConfigureNamesInt[] =
{
{"wal_decode_buffer_size", PGC_POSTMASTER, WAL_RECOVERY,
- gettext_noop("Maximum buffer size for reading ahead in the WAL during recovery."),
- gettext_noop("This controls the maximum distance we can read ahead in the WAL to prefetch data blocks referenced therein."),
+ gettext_noop("Buffer size for reading ahead in the WAL during recovery."),
+ gettext_noop("This controls the maximum distance we can read ahead in the WAL to prefetch referenced data blocks."),
GUC_UNIT_BYTE
},
&wal_decode_buffer_size,