Skip to content

Commit

Permalink
Galera MTR Tests: GCF-981 - galera_bf_abort is non deterministic
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-galera authored and mariadb-SachinSetiya committed Apr 6, 2017
1 parent e043029 commit 09d8fbc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions mysql-test/suite/galera/r/galera_bf_abort.result
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(6)) ENGINE=InnoDB;
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
INSERT INTO t1 VALUES (1,'node_2');
INSERT INTO t1 VALUES (1,'node_1');
INSERT INTO t1 VALUES (2, 'node_2');
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
wsrep_local_aborts_increment
1
Expand Down
13 changes: 9 additions & 4 deletions mysql-test/suite/galera/t/galera_bf_abort.test
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,25 @@
# Test a local transaction being aborted by a slave one
#

CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(6)) ENGINE=InnoDB;
--connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2

--connection node_2
--let $wsrep_local_bf_aborts_before = `SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_bf_aborts'`
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (1,'node_2');

--connection node_1
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (1,'node_1');

--connection node_2a
--let $wait_condition = SELECT COUNT(*) = 1 FROM t1 WHERE f2 = 'node_1'
--source include/wait_condition.inc

--connection node_2
--error ER_LOCK_DEADLOCK
INSERT INTO t1 VALUES (2);
INSERT INTO t1 VALUES (2, 'node_2');

--let $wsrep_local_bf_aborts_after = `SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_bf_aborts'`

Expand Down

0 comments on commit 09d8fbc

Please sign in to comment.