connection node_2; connection node_1; connection node_1; connection node_2; connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2; connect node_2b, 127.0.0.1, root, , test, $NODE_MYPORT_2; connect node_2c, 127.0.0.1, root, , test, $NODE_MYPORT_2; connect node_2d, 127.0.0.1, root, , test, $NODE_MYPORT_2; connect node_2e, 127.0.0.1, root, , test, $NODE_MYPORT_2; connection node_2a; CREATE TABLE t1 (f1 INTEGER NOT NULL PRIMARY KEY, f2 char) ENGINE=InnoDB; INSERT INTO t1 VALUES (0,'a'); INSERT INTO t1 VALUES (1,'a'); connection node_2b; SELECT * FROM t1; f1 f2 0 a 1 a connection node_2c; INSERT INTO t1 VALUES (2,'c'); connection node_2d; BEGIN; SELECT * FROM t1; f1 f2 0 a 1 a 2 c connection node_2e; BEGIN; UPDATE t1 SET f2='e' WHERE f1=0; connection node_2; connection node_1; connection node_2; connection node_1; connection node_2; DROP TABLE t1;