From bd5760df38c0032bb94eb73df8a18ef74c4eff57 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Fri, 26 Jan 2024 14:08:04 +0900 Subject: [PATCH] Fix comment in index.c Extracted from a larger patch by the same author. Author: Gurjeet Singh Discussion: https://postgr.es/m/CABwTF4WX=m5pQvKXvLFJoEH=hSd6O=iZSqxVqHKjFm+iL-AO=w@mail.gmail.com --- src/backend/catalog/index.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 86784efd38..05db7da528 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -3947,9 +3947,8 @@ reindex_relation(const ReindexStmt *stmt, Oid relid, int flags, toast_relid = rel->rd_rel->reltoastrelid; /* - * Get the list of index OIDs for this relation. (We trust to the - * relcache to get this with a sequential scan if ignoring system - * indexes.) + * Get the list of index OIDs for this relation. (We trust the relcache + * to get this with a sequential scan if ignoring system indexes.) */ indexIds = RelationGetIndexList(rel);