mirror of
https://github.com/MariaDB/server.git
synced 2025-09-13 13:47:59 +03:00
16 lines
510 B
Plaintext
16 lines
510 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INT PRIMARY KEY);
|
|
connection node_2;
|
|
call mtr.add_suppression("WSREP: Failed to scan the last segment to the end\\. Last events may be missing\\. Last recovered event: ");
|
|
SET DEBUG_SYNC = 'wsrep_before_certification WAIT_FOR continue';
|
|
INSERT INTO t1 VALUES (1);
|
|
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
|
|
connection node_1;
|
|
connection node_2a;
|
|
connection node_1;
|
|
DROP TABLE t1;
|