diff --git a/src/bootstrap.snap b/src/bootstrap.snap
index f5162cd01ca676bfbe85a8dcb2d85c6bb39e2726..eaa4e2ff3278a10e6c6920222e519878daa311b6 100644
Binary files a/src/bootstrap.snap and b/src/bootstrap.snap differ
diff --git a/test/big/iterator.result b/test/big/iterator.result
index b1601aabbac56600f3db741da42f502e505d99cf..1deae8e770e8176ed587ab12a076f5273fd00e62 100644
--- a/test/big/iterator.result
+++ b/test/big/iterator.result
@@ -23,9 +23,9 @@ box.insert(box.schema.INDEX_ID, 0, 2, 'i2', 'tree', 1, 2, 1, 'str', 2, 'str')
 - [0, 2, 12905, 1701147252, 1, 2, 1, 'str', 2, 'str']
 ...
 -- Tree multi-part non-unique
-box.insert(box.schema.INDEX_ID, 0, 3, 'i2', 'tree', 0, 2, 2, 'str', 3, 'str')
+box.insert(box.schema.INDEX_ID, 0, 3, 'i3', 'tree', 0, 2, 2, 'str', 3, 'str')
 ---
-- [0, 3, 12905, 1701147252, 0, 2, 2, 'str', 3, 'str']
+- [0, 3, 13161, 1701147252, 0, 2, 2, 'str', 3, 'str']
 ...
 -- Hash single-part unique
 box.insert(box.schema.INDEX_ID, 0, 4, 'i4', 'hash', 1, 1, 0, 'str')
diff --git a/test/big/iterator.test.lua b/test/big/iterator.test.lua
index db707a42ffd89486bc0c6bb1f4cfb599cff05914..6d781ddc9672e964fefc305fda5a78268affc858 100644
--- a/test/big/iterator.test.lua
+++ b/test/big/iterator.test.lua
@@ -9,7 +9,7 @@ box.insert(box.schema.INDEX_ID, 0, 1, 'i1', 'tree', 0, 1, 1, 'str')
 -- Tree multi-part unique
 box.insert(box.schema.INDEX_ID, 0, 2, 'i2', 'tree', 1, 2, 1, 'str', 2, 'str')
 -- Tree multi-part non-unique
-box.insert(box.schema.INDEX_ID, 0, 3, 'i2', 'tree', 0, 2, 2, 'str', 3, 'str')
+box.insert(box.schema.INDEX_ID, 0, 3, 'i3', 'tree', 0, 2, 2, 'str', 3, 'str')
 -- Hash single-part unique
 box.insert(box.schema.INDEX_ID, 0, 4, 'i4', 'hash', 1, 1, 0, 'str')
 -- Hash multi-part unique
diff --git a/test/big/lua.result b/test/big/lua.result
index 9fbd465d2198a31c11b1179b0e190e4577bf279d..3f153188730d73a8c81caad2f21ca2908f4bed9d 100644
--- a/test/big/lua.result
+++ b/test/big/lua.result
@@ -881,9 +881,9 @@ box.insert(box.schema.INDEX_ID, 0, 0, 'primary', 'tree', 1, 1, 0, 'num')
 ---
 - [0, 0, 'primary', 1701147252, 1, 1, 0, 'num']
 ...
-box.insert(box.schema.INDEX_ID, 0, 1, 'primary', 'hash', 1, 1, 0, 'num')
+box.insert(box.schema.INDEX_ID, 0, 1, 'secondary', 'hash', 1, 1, 0, 'num')
 ---
-- [0, 1, 'primary', 1752392040, 1, 1, 0, 'num']
+- [0, 1, 'secondary', 1752392040, 1, 1, 0, 'num']
 ...
 space = box.space[0]
 ---
diff --git a/test/big/lua.test.lua b/test/big/lua.test.lua
index 66cc4d67acc69b57e57b1683f490f0d7c576fe58..7f4ad1ff42038aca632c01915f1824ec41e78a7b 100644
--- a/test/big/lua.test.lua
+++ b/test/big/lua.test.lua
@@ -313,7 +313,7 @@ space:drop()
 dofile('index_random_test.lua')
 box.insert(box.schema.SPACE_ID, 0, 0, 'tweedledum')
 box.insert(box.schema.INDEX_ID, 0, 0, 'primary', 'tree', 1, 1, 0, 'num')
-box.insert(box.schema.INDEX_ID, 0, 1, 'primary', 'hash', 1, 1, 0, 'num')
+box.insert(box.schema.INDEX_ID, 0, 1, 'secondary', 'hash', 1, 1, 0, 'num')
 space = box.space[0]
 -------------------------------------------------------------------------------
 -- TreeIndex::random()