mirror of
https://github.com/MariaDB/server.git
synced 2025-04-14 03:05:37 +02:00

Fix wrong assertion: function wsrep_restore_kill_after_commit() asserts `WSREP(thd)`, however for the caller (wsrep_after_statement()) it is enough that the THD has an active transaction. Fixed the assertion accordingly. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
12 lines
319 B
Text
12 lines
319 B
Text
#
|
|
# MENT-2038: Assertion `(thd && (WSREP_PROVIDER_EXISTS_ && thd->variables.wsrep_on))'
|
|
# failed in void wsrep_restore_kill_after_commit(THD*)
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
|
|
SET SESSION wsrep_on=OFF;
|
|
BEGIN;
|
|
BEGIN; # If bug is present, assertion triggers during implicit commit
|
|
COMMIT;
|
|
SET SESSION wsrep_on=ON;
|