mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
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.
11 lines
393 B
Plaintext
11 lines
393 B
Plaintext
#
|
|
# 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;
|
|
ERROR HY000: Got error 1 "Operation not permitted" from storage engine binlog
|
|
End of test.
|