mirror of
https://github.com/MariaDB/server.git
synced 2025-10-12 12:25:37 +03:00
13 lines
336 B
Plaintext
13 lines
336 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;
|
|
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;
|
|
DROP TABLE t1;
|