index: implement generic versions of min(), max(), and count()
The primary reason for these methods to be implemented differently for memtx and vinyl was the 'position' optimization exploited by the memtx engine: since selects from memtx do not yield, we could use a preallocated iterator there. Now, as the 'position' optimization became redundant and was removed due to the switch to memory pools for iterator allocations, the only idiosyncrasy left in the memtx implementation is the count() optimization: count() falls back on size() for ITER_ALL. Since this optimization consists of just a few lines of code, we don't really need memtx_index_count() co-used by all memtx index implementations: we can implement it in each memtx index separately. That being said, let us: - implement generic versions of min(), max(), and count(); - make vinyl, memtx, and sysview engines use generic versions of the above-mentioned methods if appropriate; - Remove memtx_index.[hc] As a side-effect, this patch enables min(), max(), and count() in the sysview engine, but that is not bad considering that this engine implements general-purpose iterator for its indexes.
Showing
- src/box/CMakeLists.txt 0 additions, 1 deletionsrc/box/CMakeLists.txt
- src/box/index.cc 27 additions, 15 deletionssrc/box/index.cc
- src/box/memtx_bitset.c 3 additions, 4 deletionssrc/box/memtx_bitset.c
- src/box/memtx_hash.c 12 additions, 4 deletionssrc/box/memtx_hash.c
- src/box/memtx_index.c 0 additions, 83 deletionssrc/box/memtx_index.c
- src/box/memtx_index.h 0 additions, 65 deletionssrc/box/memtx_index.h
- src/box/memtx_rtree.c 12 additions, 4 deletionssrc/box/memtx_rtree.c
- src/box/memtx_tree.c 12 additions, 4 deletionssrc/box/memtx_tree.c
- src/box/vinyl_index.c 3 additions, 48 deletionssrc/box/vinyl_index.c
- test/box/access_sysview.result 0 additions, 4 deletionstest/box/access_sysview.result
- test/box/access_sysview.test.lua 0 additions, 1 deletiontest/box/access_sysview.test.lua
Loading
Please register or sign in to comment