forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit9037843
committed
Fix bugs in SSI tuple locking.
1. In heap_hot_search_buffer(), the PredicateLockTuple() call is passedwrong offset number. heapTuple->t_self is set to the tid of the firsttuple in the chain that's visited, not the one actually being read.2. CheckForSerializableConflictIn() uses the tuple's t_ctid fieldinstead of t_self to check for exiting predicate locks on the tuple. Ifthe tuple was updated, but the updater rolled back, t_ctid points to theaborted dead tuple.Reported by Hannu Krosing. Backpatch to 9.1.1 parent4dd5c31 commit9037843
2 files changed
+5
-3
lines changedLines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1561 | 1561 |
| |
1562 | 1562 |
| |
1563 | 1563 |
| |
| 1564 | + | |
| 1565 | + | |
1564 | 1566 |
| |
1565 | 1567 |
| |
1566 | 1568 |
| |
| |||
1590 | 1592 |
| |
1591 | 1593 |
| |
1592 | 1594 |
| |
1593 |
| - | |
| 1595 | + | |
1594 | 1596 |
| |
1595 | 1597 |
| |
1596 | 1598 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4276 | 4276 |
| |
4277 | 4277 |
| |
4278 | 4278 |
| |
4279 |
| - | |
4280 |
| - | |
| 4279 | + | |
| 4280 | + | |
4281 | 4281 |
| |
4282 | 4282 |
| |
4283 | 4283 |
| |
|
0 commit comments
Comments
(0)