diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/commands/indexcmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index d3824cd45a2..a5282411310 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -2351,7 +2351,8 @@ ReindexIndex(RangeVar *indexRelation, int options, bool concurrent) if (concurrent) ReindexRelationConcurrently(indOid, options); else - reindex_index(indOid, false, persistence, options); + reindex_index(indOid, false, persistence, + options | REINDEXOPT_REPORT_PROGRESS); } /* |