forked from fl00r/go-tarantool-1.6
-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
in this documentation there's 'neighbor' iterator:
rtree_index:select({1, 1}, {iterator = `neighbor`, limit = 5})
but when i look at the code there's no such thing:
IterEq = uint32(0) // key == x ASC order
IterReq = uint32(1) // key == x DESC order
IterAll = uint32(2) // all tuples
IterLt = uint32(3) // key < x
IterLe = uint32(4) // key <= x
IterGe = uint32(5) // key >= x
IterGt = uint32(6) // key > x
IterBitsAllSet = uint32(7) // all bits from x are set in key
IterBitsAnySet = uint32(8) // at least one x's bit is set
IterBitsAllNotSet = uint32(9) // all bits are not set
so missing at least 2 https://github.com/tarantool/tarantool/blob/680990a082374e4790539215f69d9e9ee39c3307/src/box/iterator_type.h
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers