From c681261d449e884bd744ce4d5df9f2f92c7b9b5c Mon Sep 17 00:00:00 2001 From: Andrey Borodin Date: Sun, 4 Aug 2024 21:31:00 +0500 Subject: [PATCH v0 3/4] Remove reference to pg_buffercache near MAX_SIMUL_LWLOCKS --- src/backend/storage/lmgr/lwlock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index e765754d80..8254c0d479 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -190,8 +190,7 @@ LWLockPadded *MainLWLockArray = NULL; /* * We use this structure to keep track of locked LWLocks for release * during error recovery. Normally, only a few will be held at once, but - * occasionally the number can be much higher; for example, the pg_buffercache - * extension locks all buffer partitions simultaneously. + * occasionally the number can be much higher. */ #define MAX_SIMUL_LWLOCKS 200 -- 2.39.3 (Apple Git-146)