diff options
author | Thomas Munro <tmunro@postgresql.org> | 2021-04-10 08:41:07 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2021-04-10 08:41:07 +1200 |
commit | 846d35b2dc1bd4d09f5e3e5e5a2cc8efafeb600e (patch) | |
tree | 27a8f7b3a4ec621766d341c8d6aafb520398cf75 /src | |
parent | dc88460c24ed71ba7464ef4749e5f25da1bf6652 (diff) | |
download | postgresql-846d35b2dc1bd4d09f5e3e5e5a2cc8efafeb600e.tar.gz postgresql-846d35b2dc1bd4d09f5e3e5e5a2cc8efafeb600e.zip |
Make new GUC short descriptions more consistent.
Reported-by: Daniel Westermann (DWE) <daniel.westermann@dbi-services.com>
Discussion: https://postgr.es/m/GV0P278MB0483490FEAC879DCA5ED583DD2739%40GV0P278MB0483.CHEP278.PROD.OUTLOOK.COM
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 6dd889a7c0e..ca378bd6afb 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -1298,7 +1298,7 @@ static struct config_bool ConfigureNamesBool[] = }, { {"recovery_prefetch", PGC_SIGHUP, WAL_SETTINGS, - gettext_noop("Prefetch referenced blocks during recovery"), + gettext_noop("Prefetch referenced blocks during recovery."), gettext_noop("Read ahead of the current replay position to find uncached blocks.") }, &recovery_prefetch, @@ -1307,7 +1307,7 @@ static struct config_bool ConfigureNamesBool[] = }, { {"recovery_prefetch_fpw", PGC_SIGHUP, WAL_SETTINGS, - gettext_noop("Prefetch blocks that have full page images in the WAL"), + gettext_noop("Prefetch blocks that have full page images in the WAL."), gettext_noop("On some systems, there is no benefit to prefetching pages that will be " "entirely overwritten, but if the logical page size of the filesystem is " "larger than PostgreSQL's, this can be beneficial. This option has no " |