mariadb/mysql-test/suite/wsrep/r/trans.result
mkaruza 2d16452a31 MDEV-22021: Galera database could get inconsistent with rollback to savepoint
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.
2020-03-31 09:59:37 +03:00

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.