mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
2d16452a31
When binlog is disabled, WSREP will not behave correctly when SAVEPOINT ROLLBACK is executed since we don't register handlers for such case. Fixed by registering WSREP handlerton for SAVEPOINT related commands.
9 lines
315 B
Text
9 lines
315 B
Text
#
|
|
# MDEV-4222 : Assertion `( ((global_system_variables.wsrep_on) &&
|
|
# (thd && thd->variables.wsrep_on)) && srep_emulate_bin_log)
|
|
# || mysql_bin_log .is_open()' fails on SAVEPOINT with
|
|
# disabled wsrep_provider
|
|
#
|
|
START TRANSACTION WITH CONSISTENT SNAPSHOT;
|
|
SAVEPOINT A;
|
|
End of test.
|