- Notifications
You must be signed in to change notification settings - Fork4.9k
Commit6b4d304
committed
Fix bug in detecting concurrent page splits in GiST insert
In commit9eb5607, I got the condition on checking for split ordeleted page wrong: I used && instead of ||. The comment correctly said"concurrent split _or_ deletion".As a result, GiST insertion could miss a concurrent split, and insert towrong page. Duncan Sands demonstrated this with a test script that did alot of concurrent inserts.Backpatch to v12, where this was introduced. REINDEX is required to fixindexes that were affected by this bug.Backpatch-through: 12Reported-by: Duncan SandsDiscussion:https://www.postgresql.org/message-id/a9690483-6c6c-3c82-c8ba-dc1a40848f11%40deepbluecap.com1 parent679744c commit6b4d304
1 file changed
+4
-1
lines changedLines changed: 4 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
248 | 248 |
| |
249 | 249 |
| |
250 | 250 |
| |
| 251 | + | |
| 252 | + | |
| 253 | + | |
251 | 254 |
| |
252 | 255 |
| |
253 | 256 |
| |
| |||
863 | 866 |
| |
864 | 867 |
| |
865 | 868 |
| |
866 |
| - | |
| 869 | + | |
867 | 870 |
| |
868 | 871 |
| |
869 | 872 |
| |
|
0 commit comments
Comments
(0)