From c5b6b9c0d74400300b77d44194f6679f470352f2 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Wed, 18 Mar 2020 11:13:12 +0900 Subject: [PATCH] Fix typo in indexcmds.c Introduced by 61d7c7b. Backpatch-through: 12 --- 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 661e42fa3a..ea5e4f67e9 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -2901,7 +2901,7 @@ ReindexRelationConcurrently(Oid relationOid, int options) /* * Don't allow reindex for an invalid index on TOAST table, as - * if rebuild it would not be possible to drop it. + * if rebuilt it would not be possible to drop it. */ if (IsToastNamespace(get_rel_namespace(relationOid)) && !get_index_isvalid(relationOid))