From 8ab0786ed2650c2132af6df6c3ee6c7f2001b24a Mon Sep 17 00:00:00 2001 From: Xiangyu Liang Date: Wed, 28 Jan 2026 13:55:49 +0800 Subject: [PATCH v1] Fix grammar in comment describing LP_DEAD hint safety The comment was missing the verb "is" in the sentence describing whether it is safe to apply LP_DEAD hints to a page. Author: Xiangyu Liang --- src/backend/access/gist/gistget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 11b214eb99b..2ff08b4ddb6 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -401,7 +401,7 @@ gistScanPage(IndexScanDesc scan, GISTSearchItem *pageItem, MemoryContextReset(so->pageDataCxt); /* - * We save the LSN of the page as we read it, so that we know whether it + * We save the LSN of the page as we read it, so that we know whether it is * safe to apply LP_DEAD hints to the page later. This allows us to drop * the pin for MVCC scans, which allows vacuum to avoid blocking. */ -- 2.52.0.windows.1