aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-03-18 11:13:12 +0900
committerMichael Paquier <michael@paquier.xyz>2020-03-18 11:15:21 +0900
commitc5b6b9c0d74400300b77d44194f6679f470352f2 (patch)
treeb9f1534ff0f8c606cba716d4246fff2eecfb9a5d
parente58e13e846953e0540b1a2c9a7739b666e134997 (diff)
downloadpostgresql-c5b6b9c0d74400300b77d44194f6679f470352f2.tar.gz
postgresql-c5b6b9c0d74400300b77d44194f6679f470352f2.zip
Fix typo in indexcmds.c
Introduced by 61d7c7b. Backpatch-through: 12
-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 661e42fa3a9..ea5e4f67e9e 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))