forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit6212276
committed
Fix progress reporting of CLUSTER / VACUUM FULL
The progress state was being clobbered once the first index completedbeing rebuilt, causing the final phases of the operation not showanything in the progress view. This was inadvertently broken in03f9e5c, which added progress tracking for REINDEX.(The reason this bugfix is this small is that I had already noticed thisproblem when writing monitoring for CREATE INDEX, and had already workedaround it, as can be seen in discussion starting athttps://postgr.es/m/20190329150218.GA25010@alvherre.pgsql Fixing theproblem is just a matter of fixing one place touched by the REINDEXmonitoring.)Reported by: Álvaro HerreraAuthor: Álvaro HerreraDiscussion:https://postgr.es/m/20190801184333.GA21369@alvherre.pgsql1 parenteb57bd9 commit6212276
File tree
3 files changed
+18
-11
lines changed- src
- backend
- catalog
- commands
- include/nodes
3 files changed
+18
-11
lines changedLines changed: 15 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3306 | 3306 |
| |
3307 | 3307 |
| |
3308 | 3308 |
| |
| 3309 | + | |
3309 | 3310 |
| |
3310 | 3311 |
| |
3311 | 3312 |
| |
| |||
3316 | 3317 |
| |
3317 | 3318 |
| |
3318 | 3319 |
| |
3319 |
| - | |
3320 |
| - | |
3321 |
| - | |
3322 |
| - | |
3323 |
| - | |
3324 |
| - | |
| 3320 | + | |
| 3321 | + | |
| 3322 | + | |
| 3323 | + | |
| 3324 | + | |
| 3325 | + | |
| 3326 | + | |
| 3327 | + | |
| 3328 | + | |
3325 | 3329 |
| |
3326 | 3330 |
| |
3327 | 3331 |
| |
3328 | 3332 |
| |
3329 | 3333 |
| |
3330 | 3334 |
| |
3331 | 3335 |
| |
3332 |
| - | |
3333 |
| - | |
| 3336 | + | |
| 3337 | + | |
| 3338 | + | |
3334 | 3339 |
| |
3335 | 3340 |
| |
3336 | 3341 |
| |
| |||
3483 | 3488 |
| |
3484 | 3489 |
| |
3485 | 3490 |
| |
3486 |
| - | |
| 3491 | + | |
| 3492 | + | |
3487 | 3493 |
| |
3488 | 3494 |
| |
3489 | 3495 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2453 | 2453 |
| |
2454 | 2454 |
| |
2455 | 2455 |
| |
2456 |
| - | |
| 2456 | + | |
2457 | 2457 |
| |
2458 | 2458 |
| |
2459 | 2459 |
| |
| |||
2657 | 2657 |
| |
2658 | 2658 |
| |
2659 | 2659 |
| |
2660 |
| - | |
| 2660 | + | |
2661 | 2661 |
| |
2662 | 2662 |
| |
2663 | 2663 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3313 | 3313 |
| |
3314 | 3314 |
| |
3315 | 3315 |
| |
| 3316 | + | |
3316 | 3317 |
| |
3317 | 3318 |
| |
3318 | 3319 |
| |
|
0 commit comments
Comments
(0)