Skip to content

Commit 846d35b

Browse files
committed
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
1 parent dc88460 commit 846d35b

File tree

1 file changed

+2
-2
lines changed
  • src/backend/utils/misc

1 file changed

+2
-2
lines changed

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,7 +1298,7 @@ static struct config_bool ConfigureNamesBool[] =
12981298
},
12991299
{
13001300
{"recovery_prefetch", PGC_SIGHUP, WAL_SETTINGS,
1301-
gettext_noop("Prefetch referenced blocks during recovery"),
1301+
gettext_noop("Prefetch referenced blocks during recovery."),
13021302
gettext_noop("Read ahead of the current replay position to find uncached blocks.")
13031303
},
13041304
&recovery_prefetch,
@@ -1307,7 +1307,7 @@ static struct config_bool ConfigureNamesBool[] =
13071307
},
13081308
{
13091309
{"recovery_prefetch_fpw", PGC_SIGHUP, WAL_SETTINGS,
1310-
gettext_noop("Prefetch blocks that have full page images in the WAL"),
1310+
gettext_noop("Prefetch blocks that have full page images in the WAL."),
13111311
gettext_noop("On some systems, there is no benefit to prefetching pages that will be "
13121312
"entirely overwritten, but if the logical page size of the filesystem is "
13131313
"larger than PostgreSQL's, this can be beneficial. This option has no "

0 commit comments

Comments
 (0)