[patches] [PATCH 1/1] test: vinyl secondary idx iterator skips changes of read keys

Vladislav Shpilevoy v.shpilevoy at tarantool.org
Thu Feb 15 22:11:09 MSK 2018


If a key is updated after a secondary index scan, but before a
primary index lookup, then ignore this update.

Closes #2442

Signed-off-by: Vladislav Shpilevoy <v.shpilevoy at tarantool.org>
---
 src/box/vinyl.c            |  8 ++++++
 src/errinj.h               |  1 +
 test/vinyl/errinj.result   | 67 ++++++++++++++++++++++++++++++++++++++++++++++
 test/vinyl/errinj.test.lua | 23 ++++++++++++++++
 4 files changed, 99 insertions(+)

diff --git a/src/box/vinyl.c b/src/box/vinyl.c
index 03ad2bf4a..3e2aa2fdc 100644
--- a/src/box/vinyl.c
+++ b/src/box/vinyl.c
@@ -3845,6 +3845,14 @@ vinyl_iterator_next(struct iterator *base, struct tuple **ret)
 	}
 
 	if (it->index->id > 0) {
+#ifndef NDEBUG
+		struct errinj *delay = errinj(ERRINJ_DELAY_PK_LOOKUP,
+					      ERRINJ_BOOL);
+		if (delay && delay->bparam) {
+			while (delay->bparam)
+				fiber_sleep(0.01);
+		}
+#endif
 		/* Get the full tuple from the primary index. */
 		if (vy_index_get(it->index->pk, it->tx, it->rv,
 				 tuple, &tuple) != 0)
diff --git a/src/errinj.h b/src/errinj.h
index 512d2342f..d99fd7417 100644
--- a/src/errinj.h
+++ b/src/errinj.h
@@ -105,6 +105,7 @@ struct errinj {
 	_(ERRINJ_BUILD_SECONDARY, ERRINJ_INT, {.iparam = -1}) \
 	_(ERRINJ_VY_POINT_ITER_WAIT, ERRINJ_BOOL, {.bparam = false}) \
 	_(ERRINJ_RELAY_EXIT_DELAY, ERRINJ_DOUBLE, {.dparam = 0}) \
+	_(ERRINJ_DELAY_PK_LOOKUP, ERRINJ_BOOL, {.bparam = false}) \
 
 ENUM0(errinj_id, ERRINJ_LIST);
 extern struct errinj errinjs[];
diff --git a/test/vinyl/errinj.result b/test/vinyl/errinj.result
index 8aaa47457..b1e7b54f5 100644
--- a/test/vinyl/errinj.result
+++ b/test/vinyl/errinj.result
@@ -1194,3 +1194,70 @@ box.commit()
 s:drop()
 ---
 ...
+--
+-- gh-2442: secondary index cursor skips key, inserted after
+-- the secondary index scan, but before a primary index lookup.
+-- It is ok, and the test checks this.
+--
+s = box.schema.create_space('test', {engine = 'vinyl'})
+---
+...
+pk = s:create_index('pk')
+---
+...
+sk = s:create_index('sk', {parts = {{2, 'unsigned'}}})
+---
+...
+s:replace{1, 1}
+---
+- [1, 1]
+...
+s:replace{3, 3}
+---
+- [3, 3]
+...
+box.snapshot()
+---
+- ok
+...
+ret = nil
+---
+...
+function do_read() ret = sk:select({2}, {iterator = 'GE'}) end
+---
+...
+errinj.set("ERRINJ_DELAY_PK_LOOKUP", true)
+---
+- ok
+...
+f = fiber.create(do_read)
+---
+...
+f
+---
+- status: suspended
+  name: lua
+  id: 247
+...
+ret
+---
+- null
+...
+s:replace{2, 2}
+---
+- [2, 2]
+...
+errinj.set("ERRINJ_DELAY_PK_LOOKUP", false)
+---
+- ok
+...
+while ret == nil do fiber.sleep(0.01) end
+---
+...
+ret
+---
+- - [3, 3]
+...
+s:drop()
+---
+...
diff --git a/test/vinyl/errinj.test.lua b/test/vinyl/errinj.test.lua
index 45eed72eb..3d6585c42 100644
--- a/test/vinyl/errinj.test.lua
+++ b/test/vinyl/errinj.test.lua
@@ -466,3 +466,26 @@ value
 box.commit()
 
 s:drop()
+
+--
+-- gh-2442: secondary index cursor skips key, inserted after
+-- the secondary index scan, but before a primary index lookup.
+-- It is ok, and the test checks this.
+--
+s = box.schema.create_space('test', {engine = 'vinyl'})
+pk = s:create_index('pk')
+sk = s:create_index('sk', {parts = {{2, 'unsigned'}}})
+s:replace{1, 1}
+s:replace{3, 3}
+box.snapshot()
+ret = nil
+function do_read() ret = sk:select({2}, {iterator = 'GE'}) end
+errinj.set("ERRINJ_DELAY_PK_LOOKUP", true)
+f = fiber.create(do_read)
+f
+ret
+s:replace{2, 2}
+errinj.set("ERRINJ_DELAY_PK_LOOKUP", false)
+while ret == nil do fiber.sleep(0.01) end
+ret
+s:drop()
-- 
2.14.3 (Apple Git-98)




More information about the Tarantool-patches mailing list