mirror of
https://github.com/postgres/postgres.git
synced 2025-06-22 02:52:08 +03:00
Fix progress report of REINDEX INDEX
I (Álvaro) broke that in commit 6212276e43
-- forgot to set the
necessary flag. Repair.
Author: Amit Langote
Discussion: https://postgr.es/m/CA+HiwqEaM2tV5awKhP1vSbgjQe_uXVU15Oi4sTgwgempwMiT8g@mail.gmail.com
This commit is contained in:
@ -2350,7 +2350,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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user