mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Daniele Sciascia](/assets/img/avatar_default.png)
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;
|