1
by brian
clean slate |
1 |
CREATE TABLE t1(a int) engine=innodb; |
2 |
START TRANSACTION; |
|
3 |
insert into t1 values(9); |
|
4 |
SET SESSION debug="d,crash_commit_before"; |
|
5 |
COMMIT; |
|
6 |
ERROR HY000: Lost connection to MySQL server during query |
|
7 |
SHOW CREATE TABLE t1; |
|
8 |
Table Create Table |
|
9 |
t1 CREATE TABLE `t1` ( |
|
10 |
`a` int(11) DEFAULT NULL |
|
11 |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|
12 |
SELECT * FROM t1; |
|
13 |
a
|
|
14 |
DROP TABLE t1; |