From 89403ed228583c80c608310e68020229818836e6 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Fri, 18 Oct 2019 14:49:39 +0200 Subject: [PATCH] Fix typo Apparently while this code was being developed, ReindexRelationConcurrently operated on multiple relations. The version that was ultimately pushed doesn't, so this comment's use of plural is inaccurate. --- src/backend/commands/indexcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 589b8816a4d..e9da06a9fa7 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -2741,7 +2741,7 @@ ReindexRelationConcurrently(Oid relationOid, int options) /* * Extract the list of indexes that are going to be rebuilt based on the - * list of relation Oids given by caller. + * relation Oid given by caller. */ switch (relkind) {