connection node_2; connection node_1; connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3; connection node_1; connection node_2; connection node_3; connection node_1; CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) Engine=InnoDB; INSERT INTO t1 VALUES (1); connection node_2; connection node_3; SELECT COUNT(*) = 1 FROM t1; COUNT(*) = 1 1 connection node_1; connection node_2; connection node_2; # restart: with restart_parameters INSERT INTO t1 VALUES (2); connection node_3; SELECT COUNT(*) = 2 FROM t1; COUNT(*) = 2 1 DROP TABLE t1;