As described in documentation synchronous replication can be enabled per-space using the is_sync option. This option was missed after switching from Lua to SQL in tests.
(was lost in 3214905b7930ee75357bc431671f62777fdcec87)
It is not possible to change is_sync using SET SESSION in SQL:
As described in documentation synchronous replication can be enabled per-space using the
is_sync
option. This option was missed after switching from Lua to SQL in tests.(was lost in 3214905b7930ee75357bc431671f62777fdcec87)
It is not possible to change
is_sync
usingSET SESSION
in SQL:But it is possible to create Lua function in SQL and use
box.space.j:alter{is_sync = true}
in it.