Commit 13627d49 authored by sjaakola's avatar sjaakola Committed by Nirbhay Choubey

refs MW-246

- created mtr test for testing explicit desyncing with RSU mode DDL
parent 4bdf0258
SET GLOBAL wsrep_desync=1;
SET wsrep_OSU_method=RSU;
CREATE TABLE t1 (i int primary key);
SHOW VARIABLES LIKE 'wsrep_desync';
Variable_name Value
wsrep_desync ON
SET GLOBAL wsrep_desync=0;
DROP TABLE t1;
SHOW VARIABLES LIKE 'wsrep_desync';
Variable_name Value
wsrep_desync OFF
#
# codership/mysql-wsrep/247 MW-246 -
# DDL with RSU fails if node is desynced upfont
#
--source include/galera_cluster.inc
--source include/have_innodb.inc
--connection node_1
SET GLOBAL wsrep_desync=1;
SET wsrep_OSU_method=RSU;
CREATE TABLE t1 (i int primary key);
SHOW VARIABLES LIKE 'wsrep_desync';
SET GLOBAL wsrep_desync=0;
DROP TABLE t1;
SHOW VARIABLES LIKE 'wsrep_desync';
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