mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 14:45:34 +02:00
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
connection node_2;
|
|
connection node_3;
|
|
connection node_2;
|
|
SET GLOBAL wsrep_on=OFF;
|
|
DROP SCHEMA test;
|
|
connection node_3;
|
|
SET GLOBAL wsrep_on=OFF;
|
|
CREATE TABLE t1 (f1 INTEGER);
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER);
|
|
connection node_1;
|
|
SET SESSION wsrep_sync_wait=0;
|
|
connection node_2;
|
|
SET SESSION wsrep_sync_wait=0;
|
|
connection node_3;
|
|
SET SESSION wsrep_sync_wait=0;
|
|
connection node_1;
|
|
SET GLOBAL wsrep_provider_options='pc.bootstrap=YES';
|
|
connection node_2;
|
|
disconnect node_2;
|
|
connect node_2, 127.0.0.1, root, , mysql, $NODE_MYPORT_2;
|
|
# restart
|
|
connection node_3;
|
|
# restart
|
|
connection node_1;
|
|
DROP TABLE test.t1;
|
|
connection node_2;
|
|
CALL mtr.add_suppression("Inconsistent by consensus\\.");
|
|
CALL mtr.add_suppression("Error_code: 1049");
|
|
CALL mtr.add_suppression("WSREP: Failed to apply trx: source: ");
|
|
CALL mtr.add_suppression("WSREP: Failed to apply app buffer");
|
|
CALL mtr.add_suppression("WSREP: Node consistency compromized, leaving cluster\\.\\.\\.");
|
|
connection node_3;
|
|
CALL mtr.add_suppression("Inconsistent by consensus\\.");
|
|
CALL mtr.add_suppression("Error_code: 1050");
|
|
CALL mtr.add_suppression("WSREP: Failed to apply trx: source: ");
|
|
CALL mtr.add_suppression("WSREP: Failed to apply app buffer");
|
|
CALL mtr.add_suppression("WSREP: Node consistency compromized, leaving cluster\\.\\.\\.");
|