From 5757141caeaff4af0c206ab672d542cbd608542c Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 6 Oct 2022 20:25:02 +0900 Subject: [PATCH] Fix comment in xlogprefetcher.c Author: Sho Kato Discussion: https://postgr.es/m/TYCPR01MB684954052EC534A3261B29249F5C9@TYCPR01MB6849.jpnprd01.prod.outlook.com --- src/backend/access/transam/xlogprefetcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/transam/xlogprefetcher.c b/src/backend/access/transam/xlogprefetcher.c index 8f5d4253320..1cbac4b7f6f 100644 --- a/src/backend/access/transam/xlogprefetcher.c +++ b/src/backend/access/transam/xlogprefetcher.c @@ -19,7 +19,7 @@ * avoid a second buffer mapping table lookup. * * Currently, only the main fork is considered for prefetching. Currently, - * prefetching is only effective on systems where BufferPrefetch() does + * prefetching is only effective on systems where PrefetchBuffer() does * something useful (mainly Linux). * *-------------------------------------------------------------------------