From 15b140d465b6cd3380ca58d1d9b878a6a94f94d8 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Mon, 18 May 2026 08:43:12 -0700 Subject: [PATCH] Remove obsolete comment in AtEOXact_Inval This comment was originally added to RegisterInvalid() in POSTGRES before Postgres95, and came in via the Postgres95 import. It has been obsolote for quite some time so remove. Author: Steven Niu Reviewed-by: Chao Li Reviewed-by: Daniel Gustafsson Discussion: https://postgr.es/m/MN2PR15MB30219837B2381AE2518A4C45A7FCA@MN2PR15MB3021.namprd15.prod.outlook.com --- src/backend/utils/cache/inval.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/backend/utils/cache/inval.c b/src/backend/utils/cache/inval.c index d59216b28f1..efc8b7b9122 100644 --- a/src/backend/utils/cache/inval.c +++ b/src/backend/utils/cache/inval.c @@ -1191,9 +1191,6 @@ ProcessCommittedInvalidationMessages(SharedInvalidationMessage *msgs, * In any case, reset our state to empty. We need not physically * free memory here, since TopTransactionContext is about to be emptied * anyway. - * - * Note: - * This should be called as the last step in processing a transaction. */ void AtEOXact_Inval(bool isCommit)