diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-10-06 20:25:02 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-10-06 20:25:02 +0900 |
commit | 5757141caeaff4af0c206ab672d542cbd608542c (patch) | |
tree | ecd0eadfee7fe4302ee115629cd59293f627939b /src | |
parent | 051b096b8dd3b65f8e4528a8cd24a8702646e8b2 (diff) | |
download | postgresql-5757141caeaff4af0c206ab672d542cbd608542c.tar.gz postgresql-5757141caeaff4af0c206ab672d542cbd608542c.zip |
Fix comment in xlogprefetcher.c
Author: Sho Kato
Discussion: https://postgr.es/m/TYCPR01MB684954052EC534A3261B29249F5C9@TYCPR01MB6849.jpnprd01.prod.outlook.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlogprefetcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
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). * *------------------------------------------------------------------------- |