From 8575814c0e1a9cb96f75114266be5f74ee91bd48 Mon Sep 17 00:00:00 2001 From: Maksim Tiushev Date: Mon, 11 Aug 2025 14:45:43 +0300 Subject: [PATCH] fix: support 'np' and 'pp' iterator types --- tarantool/src/index.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tarantool/src/index.rs b/tarantool/src/index.rs index a6f53f60..726ad364 100644 --- a/tarantool/src/index.rs +++ b/tarantool/src/index.rs @@ -88,8 +88,14 @@ pub enum IteratorType { /// key overlaps x Overlaps = 10, - /// tuples in distance ascending order from specified point + /// tuples as they move away from x point Neighbor = 11, + + /// next prefix, ASC order + NP = 12, + + /// previous prefix, DESC order + PP = 13, } ////////////////////////////////////////////////////////////////////////////////