mariadb/mysql-test/suite/galera_sr/r/GCF-571.result
Daniele Sciascia bdcecfa22c MDEV-22021: Galera database could get inconsistent with rollback to savepoint
When binlog is disabled, WSREP will not behave correctly when
SAVEPOINT ROLLBACK is executed and we will not rollback transaction.
2020-03-31 14:18:21 +03:00

67 lines
1.9 KiB
Text

connection node_2;
connection node_1;
SET AUTOCOMMIT=OFF;
CREATE TABLE t1 (f1 VARCHAR(10)) ENGINE=InnoDB;
SET SESSION wsrep_trx_fragment_size = 1;
START TRANSACTION;
INSERT INTO t1 VALUES ('%abcdef%');
INSERT INTO t1 VALUES ('%abcdef%');
INSERT INTO t1 VALUES ('%abcdef%');
INSERT INTO t1 VALUES ('%abcdef%');
SAVEPOINT A;
INSERT INTO t1 VALUES ('xyzxyz');
INSERT INTO t1 VALUES ('xyzxyz');
INSERT INTO t1 VALUES ('xyzxyz');
INSERT INTO t1 VALUES ('xyzxyz');
INSERT INTO t1 VALUES ('xyzxyz');
connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1;
connection node_1a;
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%abcdef%';
COUNT(*) > 0
1
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%xyz%';
COUNT(*) > 0
1
SELECT COUNT(*) = 1 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%SAVEPOINT `A`%';
COUNT(*) = 1
1
connection node_1;
ROLLBACK TO SAVEPOINT A;
connection node_1a;
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%abcdef%';
COUNT(*) > 0
1
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%xyz%';
COUNT(*) > 0
1
SELECT COUNT(*) = 1 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%SAVEPOINT `A`%';
COUNT(*) = 1
1
SELECT COUNT(*) = 1 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%ROLLBACK TO `A`%';
COUNT(*) = 1
0
connection node_2;
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%abcdef%';
COUNT(*) > 0
1
SELECT COUNT(*) > 0 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%xyz%';
COUNT(*) > 0
1
SELECT COUNT(*) = 1 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%SAVEPOINT `A`%';
COUNT(*) = 1
1
SELECT COUNT(*) = 1 FROM mysql.wsrep_streaming_log WHERE frag LIKE '%ROLLBACK TO `A`%';
COUNT(*) = 1
0
connection node_1;
ROLLBACK;
connection node_1a;
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
COUNT(*) = 0
1
connection node_2;
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
COUNT(*) = 0
1
connection node_1;
DROP TABLE t1;