Skip to content
Snippets Groups Projects
Commit 40222886 authored by Kirill Shcherbatov's avatar Kirill Shcherbatov Committed by Kirill Yukhin
Browse files

box: fix upgrade script for _fk_constraint space

The set_system_triggers and erase routines in upgrade.lua did not
proceed actions for _fk_constraint space.
parent e49ef27b
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ local function set_system_triggers(val)
box.space._collation:run_triggers(val)
box.space._schema:run_triggers(val)
box.space._cluster:run_triggers(val)
box.space._fk_constraint:run_triggers(val)
end
--------------------------------------------------------------------------------
......@@ -92,6 +93,7 @@ local function erase()
truncate(box.space._trigger)
truncate(box.space._schema)
truncate(box.space._cluster)
truncate(box.space._fk_constraint)
end
local function create_sysview(source_id, target_id)
......
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