The translation was automatically locked due to following alerts: Could not merge the repository.
Loading…
![]() New source string testing_project / Documentation: concepts/replication/repl_problem_solving — English |
Glossary
English | English | ||
---|---|---|---|
No related strings found in the glossary. |
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)