3
SELECT * FROM t1 FOR UPDATE;
4
-- eval $con1_extra_sql
5
-- eval $con1_extra_sql2
8
SELECT * FROM t2 FOR UPDATE;
9
-- eval $con2_extra_sql
13
INSERT INTO t2 VALUES (0);
16
INSERT INTO t1 VALUES (0);
24
INSERT INTO t1 VALUES (0);
27
INSERT INTO t2 VALUES (0);
34
DROP TABLE t5_nontrans;
35
CREATE TABLE t5_nontrans (a INT) ENGINE=ARCHIVE;