diff options
author | Michael Paquier | 2024-01-26 05:08:04 +0000 |
---|---|---|
committer | Michael Paquier | 2024-01-26 05:08:04 +0000 |
commit | bd5760df38c0032bb94eb73df8a18ef74c4eff57 (patch) | |
tree | 3ccfc164e21ae0ff2e4995506bfb10448cac3a20 /src/backend/catalog/index.c | |
parent | 2cca95e175463a7af95164498b889b1ea118583d (diff) |
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
Diffstat (limited to 'src/backend/catalog/index.c')
-rw-r--r-- | src/backend/catalog/index.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 86784efd384..05db7da528f 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); |