memtx: track `index:random` reads and clarify result
TREE (HASH) index implements `random` method: if the space is empty from the transaction's perspective, which means we have to return nothing, add gap tracking of whole range (full scan tracking), since this result is equivalent to `index:select{}`, otherwise repeatedly call `random` and clarify result, until we get a non-empty one. We do not care about performance here, since all operations in context of transaction management currently have O(number of dirty tuples) complexity. Closes #7670 NO_DOC=bugfix
Showing
- changelogs/unreleased/gh-7670-memtx-tx-manager-idx-rand-inconsistency.md 4 additions, 0 deletions...leased/gh-7670-memtx-tx-manager-idx-rand-inconsistency.md
- src/box/memtx_hash.cc 18 additions, 5 deletionssrc/box/memtx_hash.cc
- src/box/memtx_tree.cc 17 additions, 2 deletionssrc/box/memtx_tree.cc
- test/box-luatest/gh_7670_memtx_tx_manager_idx_rand_inconsistency_test.lua 125 additions, 0 deletions.../gh_7670_memtx_tx_manager_idx_rand_inconsistency_test.lua
- test/box-luatest/suite.ini 1 addition, 1 deletiontest/box-luatest/suite.ini
Loading