Commit b633dbda authored by sjaakola's avatar sjaakola Committed by Nirbhay Choubey

refs codership/mysql-wsrep#237

- test for FLUSH TABLES hang in slave node
parent 32df0b1a
CREATE TABLE t (f1 INTEGER PRIMARY KEY) Engine=InnoDB;
SET DEBUG_SYNC = 'wsrep_before_replication WAIT_FOR continue';
INSERT INTO t values (1);;
SET SESSION wsrep_sync_wait = 0;
FLUSH TABLES;
SELECT SLEEP(1);
SLEEP(1)
0
SET DEBUG_SYNC= 'now SIGNAL continue';
DROP TABLE t;
# hang because of replicated FLUSH TABLE command
--source include/galera_cluster.inc
--source include/have_innodb.inc
--source include/have_debug_sync.inc
CREATE TABLE t (f1 INTEGER PRIMARY KEY) Engine=InnoDB;
--connection node_1
SET DEBUG_SYNC = 'wsrep_before_replication WAIT_FOR continue';
--send INSERT INTO t values (1);
--connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1
--connection node_1a
SET SESSION wsrep_sync_wait = 0;
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'debug sync point: wsrep_before_replication'
--source include/wait_condition.inc
--connection node_2
FLUSH TABLES;
--connection node_1a
SELECT SLEEP(1);
SET DEBUG_SYNC= 'now SIGNAL continue';
--connection node_1
--reap
DROP TABLE t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment