forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit4433c6e
committed
During heap rebuild, lock any TOAST index until end of transaction.
swap_relation_files() calls toast_get_valid_index() to find and lockthis index, just before swapping with the rebuilt TOAST index. Thelatter function releases the lock before returning. Potential formischief is low; a concurrent session can issue ALTER INDEX ... SET(fillfactor = ...), which is not alarming. Nonetheless, changingpg_class.relfilenode without a lock is unconventional. Back-patch to9.5 (all supported versions), because another fix needs this.Discussion:https://postgr.es/m/20191226001521.GA1772687@rfd.leadboat.com1 parent03e99a6 commit4433c6e
2 files changed
+3
-3
lines changedLines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1445 | 1445 |
| |
1446 | 1446 |
| |
1447 | 1447 |
| |
1448 |
| - | |
1449 |
| - | |
| 1448 | + | |
| 1449 | + | |
1450 | 1450 |
| |
1451 | 1451 |
| |
1452 | 1452 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1652 | 1652 |
| |
1653 | 1653 |
| |
1654 | 1654 |
| |
1655 |
| - | |
| 1655 | + | |
1656 | 1656 |
| |
1657 | 1657 |
| |
1658 | 1658 |
| |
|
0 commit comments
Comments
(0)