~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
START TRANSACTION;
START TRANSACTION;
Warnings:
Warning	1747	There is already a transaction in progress
ROLLBACK;
CREATE TABLE t1 (a int);
START TRANSACTION;
INSERT INTO t1 VALUES (1);
START TRANSACTION;
Warnings:
Warning	1747	There is already a transaction in progress
INSERT INTO t1 VALUES (2);
ROLLBACK;
SELECT * FROM t1;
a
DROP TABLE t1;