mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03: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>
7 lines
107 B
Plaintext
7 lines
107 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
SET SESSION wsrep_on=OFF;
|
|
BEGIN;
|
|
ROLLBACK;
|
|
SET SESSION wsrep_on=OFF;
|