Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d1b0007

Browse filesBrowse files
committed
Fix progress report of REINDEX INDEX
I (Álvaro) broke that in commit 6212276 -- forgot to set the necessary flag. Repair. Author: Amit Langote Discussion: https://postgr.es/m/CA+HiwqEaM2tV5awKhP1vSbgjQe_uXVU15Oi4sTgwgempwMiT8g@mail.gmail.com
1 parent 5033e95 commit d1b0007
Copy full SHA for d1b0007

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed

‎src/backend/commands/indexcmds.c

Copy file name to clipboardExpand all lines: src/backend/commands/indexcmds.c
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2350,7 +2350,8 @@ ReindexIndex(RangeVar *indexRelation, int options, bool concurrent)
23502350
if (concurrent)
23512351
ReindexRelationConcurrently(indOid, options);
23522352
else
2353-
reindex_index(indOid, false, persistence, options);
2353+
reindex_index(indOid, false, persistence,
2354+
options | REINDEXOPT_REPORT_PROGRESS);
23542355
}
23552356

23562357
/*

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.