Skip to content
Snippets Groups Projects
Commit ecd110c7 authored by Ivan Koptelov's avatar Ivan Koptelov Committed by Kirill Yukhin
Browse files

sql: fix flaky collation test

Sometimes this test failed because collation 'c' was not dropped
automatically. Now it is always dropped manually, so the problem
is no more.
parent 896f396c
No related branches found
No related tags found
No related merge requests found
......@@ -796,3 +796,6 @@ box.space._collation.index.name:get({'c'})
---
- [4, 'c', 1, 'ICU', 'unicode', {'strength': 'tertiary'}]
...
box.internal.collation.drop('c')
---
...
......@@ -313,3 +313,4 @@ box.space.JJ:drop()
--
box.internal.collation.create('c', 'ICU', 'unicode')
box.space._collation.index.name:get({'c'})
box.internal.collation.drop('c')
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