Commit f7d35ffc authored by Oleksandr Byelkin's avatar Oleksandr Byelkin

Galera test fix after merge.

parent ccc5e577
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2;
ALTER TABLE mysql.gtid_slave_pos engine = InnoDB; ALTER TABLE mysql.gtid_slave_pos engine = InnoDB;
START SLAVE; START SLAVE;
connection node_1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=MyISAM; CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=MyISAM;
INSERT INTO t1 VALUES(1); INSERT INTO t1 VALUES(1);
SELECT LENGTH(@@global.gtid_binlog_state) > 1; SELECT LENGTH(@@global.gtid_binlog_state) > 1;
LENGTH(@@global.gtid_binlog_state) > 1 LENGTH(@@global.gtid_binlog_state) > 1
1 1
connection node_2;
gtid_binlog_state_equal gtid_binlog_state_equal
0 0
connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3;
SELECT COUNT(*) = 0 FROM t1; SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0 COUNT(*) = 0
1 1
gtid_binlog_state_equal gtid_binlog_state_equal
0 0
#cleanup #cleanup
connection node_1;
DROP TABLE t1; DROP TABLE t1;
reset master; reset master;
connection node_2;
STOP SLAVE; STOP SLAVE;
RESET SLAVE ALL; RESET SLAVE ALL;
reset master; reset master;
connection node_3;
reset master; reset master;
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