Skip to content
Snippets Groups Projects
Commit 89f3e721 authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

Merge branch 'master' into 1.6

Conflicts:
	src/box/lua/call.cc
	src/box/lua/net_box.c
	src/box/lua/tuple.c
	src/box/memtx_engine.cc
	src/box/sophia_engine.cc
	src/lua/msgpack.c
parents 5519757a 2f1a01f3
No related branches found
No related tags found
No related merge requests found
Subproject commit 2d0bd95ac2c6cfc5cc52d4fc041d973e5a10ab16
Subproject commit 6945c2edcf297478e784464f5b5aca7f653757f1
ok
gh-1185 test done w/o crash!.
......@@ -65,4 +65,27 @@ fiber.sleep(0.3)
continue_snapshoting = false
snap_chan:get()
print('ok')
--https://github.com/tarantool/tarantool/issues/1185
s1 = box.schema.create_space('test1', { engine = 'memtx'})
i1 = s1:create_index('test', { type = 'tree', parts = {1, 'num'} })
s2 = box.schema.create_space('test2', { engine = 'memtx'})
i2 = s2:create_index('test', { type = 'tree', parts = {1, 'num'} })
for i = 1,1000 do s1:insert{i, i, i} end
fiber.create(function () box.snapshot() end)
fiber.sleep(0)
s2:insert{1, 2, 3}
s2:update({1}, {{'+', 2, 2}})
s1:drop()
s2:drop()
print('gh-1185 test done w/o crash!.')
os.exit(0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment