mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
14 lines
334 B
Text
14 lines
334 B
Text
connection node_2;
|
|
connection node_1;
|
|
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';
|
|
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
|