Skip to content
Snippets Groups Projects
Commit a7dbf78f authored by Nikita Pettik's avatar Nikita Pettik Committed by Vladimir Davydov
Browse files

Disable triggers for _collation during bootstrap

After patch that introduced "none" collation (a953051e),
box.internal.bootstrap() started to fail due to inability to drop
mentioned collation. Lets turn off system triggers for _collation space
in order to process its complete purification during bootstrap.
parent e74b86bb
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -70,6 +70,7 @@ local function set_system_triggers(val)
box.space._func:run_triggers(val)
box.space._priv:run_triggers(val)
box.space._trigger:run_triggers(val)
box.space._collation:run_triggers(val)
end
--------------------------------------------------------------------------------
......
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