Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_index/tuple_pos — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_index/tuple_pos — English |
tarantool> bands:insert{1, 'Roxette', 1986}
bands:insert{2, 'Scorpions', 1965}
bands:insert{3, 'Ace of Base', 1987}
bands:insert{4, 'The Beatles', 1960}
bands:insert{5, 'Pink Floyd', 1965}
bands:insert{6, 'The Rolling Stones', 1962}
---
...
-- Get a tuple's position --
tarantool> position = bands.index.primary:tuple_pos({3, 'Ace of Base', 1987})
---
...
-- Pass the tuple's position as the 'after' parameter --
tarantool> bands:select({}, {limit = 3, after = position})
---
- - [4, 'The Beatles', 1960]
- [5, 'Pink Floyd', 1965]
- [6, 'The Rolling Stones', 1962]
...