mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
14 lines
342 B
Text
14 lines
342 B
Text
|
CREATE TABLE t1(a int) engine=innodb;
|
||
|
START TRANSACTION;
|
||
|
insert into t1 values(9);
|
||
|
SET SESSION debug="d,crash_commit_before";
|
||
|
COMMIT;
|
||
|
ERROR HY000: Lost connection to MySQL server during query
|
||
|
SHOW CREATE TABLE t1;
|
||
|
Table Create Table
|
||
|
t1 CREATE TABLE `t1` (
|
||
|
`a` int(11) DEFAULT NULL
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
||
|
SELECT * FROM t1;
|
||
|
a
|