Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mysql-test/suite/galera_sr/r/GCF-1060.result
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ connection node_1;
connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1;
Running a concurrent test with the following queries:
TRUNCATE TABLE t1
INSERT INTO t1 VALUE (1,'x'),(2,'x'),(3,'x')
INSERT INTO t1 VALUE (4, 'z');
INSERT INTO t1 SELECT seq, 'test' from seq_1_to_1000;
INSERT INTO t1 SELECT seq, 'test2' from seq_2000_to_3000;
connection node_1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY AUTO_INCREMENT, f2 CHAR(255)) ENGINE=InnoDB;
Expand Down
4 changes: 4 additions & 0 deletions mysql-test/suite/galera_sr/t/GCF-1060.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
!include ../galera_2nodes.cnf

[mysqld]
wsrep-debug=1
8 changes: 5 additions & 3 deletions mysql-test/suite/galera_sr/t/GCF-1060.test
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
--source include/galera_cluster.inc
--source include/have_sequence.inc
--source include/big_test.inc

--let $count = 100;
--let $count = 50;
--let $wsrep_trx_fragment_size = 1;
--let $query_node_1 = TRUNCATE TABLE t1
--let $query_node_1a = INSERT INTO t1 VALUE (1,'x'),(2,'x'),(3,'x')
--let $query_node_2 = INSERT INTO t1 VALUE (4, 'z');
--let $query_node_1a = INSERT INTO t1 SELECT seq, 'test' from seq_1_to_1000;
--let $query_node_2 = INSERT INTO t1 SELECT seq, 'test2' from seq_2000_to_3000;

--source suite/galera/include/galera_concurrent_test.inc