aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2019-10-18 14:49:39 +0200
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2019-10-18 14:49:39 +0200
commit89403ed228583c80c608310e68020229818836e6 (patch)
treefd14e012d8200ce1db80276d3077a32c20711863 /src
parentd2efb90dbad97828838ab356c03927b3dda65070 (diff)
downloadpostgresql-89403ed228583c80c608310e68020229818836e6.tar.gz
postgresql-89403ed228583c80c608310e68020229818836e6.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/indexcmds.c2
1 files changed, 1 insertions, 1 deletions
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)
{