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:13:12 +0900
commitfdeeb524b4e28affc527548af389c75e0a99c340 (patch)
tree93e9473da7091cd93fffe3f742107adf7e900aa7
parent15ef6ff4b985276c386adf3e11ebf7f955ea6f1f (diff)
downloadpostgresql-fdeeb524b4e28affc527548af389c75e0a99c340.tar.gz
postgresql-fdeeb524b4e28affc527548af389c75e0a99c340.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 6d696dd672b..4e8263af4be 100644
--- a/src/backend/commands/indexcmds.c
+++ b/src/backend/commands/indexcmds.c
@@ -2870,7 +2870,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))