memtx: abort readers of rollbacked prepared
There's case when a transaction is rolled back from prepared state. This happens when WAL fails, synchronized replication confirmation failure or perhaps in other similar cases. By design other RW transactions and transactions with READ_COMMITTED isolation level are allowed to read prepared state. All these transactions must be aborted in case of rollback of prepared transaction since they definitely have read no more possible database state. This patch implements this abortion. Closed #8654 NO_DOC=bugfix (cherry picked from commit 54986902)
Showing
- changelogs/unreleased/gh-8654-mvcc-abort-readers-of-prepared-and-rollbacked.md 4 additions, 0 deletions.../gh-8654-mvcc-abort-readers-of-prepared-and-rollbacked.md
- src/box/memtx_tx.c 66 additions, 6 deletionssrc/box/memtx_tx.c
- test/engine-luatest/gh_8654_memtx_mvcc_abort_readers_of_prepared_test.lua 86 additions, 0 deletions...est/gh_8654_memtx_mvcc_abort_readers_of_prepared_test.lua
Loading
Please register or sign in to comment