mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
5a7374d71b
- Don't log connection creation in galera_connect.inc
24 lines
543 B
Text
24 lines
543 B
Text
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
|
|
connection node_2;
|
|
START SLAVE;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES(1);
|
|
connection node_2;
|
|
INSERT INTO t1 VALUES (2);
|
|
connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3;
|
|
SELECT COUNT(*) = 2 FROM t1;
|
|
COUNT(*) = 2
|
|
1
|
|
INSERT INTO t1 VALUES (3);
|
|
connection node_2;
|
|
SELECT COUNT(*) = 3 FROM t1;
|
|
COUNT(*) = 3
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|
|
connection node_2;
|
|
STOP SLAVE;
|
|
RESET SLAVE ALL;
|
|
connection node_1;
|
|
RESET MASTER;
|