Loading…
![]() New source string testing_project / Documentation: book/admin/replication/repl_problem_solving — English |
Loading…
![]() New source string testing_project / Documentation: book/admin/replication/repl_problem_solving — English |
local my_trigger = function(old, new) ... end -- your function resolving a conflict
box.ctl.on_schema_init(function()
box.space._space:on_replace(function(old_space, new_space)
if not old_space and new_space and new_space.name == my_space_name then
box.on_commit(function()
box.space[my_space_name]:before_replace(my_trigger)
end
end
end)
end)