memtx: fix TREE index `get` check for part count
If TREE index `get` result is empty, the key part count is incorrectly compared to the tree's `cmp_def->part_count`, though it should be compared with `cmp_def->unique_part_count`. But we can actually assume that by the time we get to the index's `get` method the part count is equal to the unique part count (partial keys are rejected and `get` is not supported for non-unique indexes): change check to correct assertion. Closes #7685 NO_DOC=<bugfix> (cherry picked from commit bfcd8ca7)
Showing
- changelogs/unreleased/gh-7685-memtx-tree-idx-get-with-nullable-field-phantom-read.md 4 additions, 0 deletions...85-memtx-tree-idx-get-with-nullable-field-phantom-read.md
- src/box/memtx_tree.cc 2 additions, 2 deletionssrc/box/memtx_tree.cc
- test/box-luatest/gh_7685_memtx_tree_idx_get_with_nullable_field_phantom_read_test.lua 66 additions, 0 deletions...tx_tree_idx_get_with_nullable_field_phantom_read_test.lua
Loading
Please register or sign in to comment