mirror of
https://github.com/MariaDB/server.git
synced 2025-04-22 23:25:37 +02:00

Avoid starting transactions in wsrep-lib side when wsrep is disabled. It is unnecessary, and causes spurious deadlock errors on transaction clean up. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
6 lines
107 B
Text
6 lines
107 B
Text
connection node_2;
|
|
connection node_1;
|
|
SET SESSION wsrep_on=OFF;
|
|
BEGIN;
|
|
ROLLBACK;
|
|
SET SESSION wsrep_on=OFF;
|