Skip to content
Snippets Groups Projects
Commit 13e5123e authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

sophia: a post merge fix

parent 48f8b98b
No related branches found
No related tags found
No related merge requests found
......@@ -279,3 +279,22 @@ a:drop()
b:drop()
---
...
-- ensure findByKey works in empty transaction context
space = box.schema.space.create('test', { engine = 'sophia' })
---
...
index = space:create_index('primary', { type = 'tree', parts = {1, 'num'} })
---
...
box.begin()
---
...
space:get({0})
---
...
box.rollback()
---
...
space:drop()
---
...
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