summaryrefslogtreecommitdiff
path: root/mysql-test/main/crash_commit_before.result
blob: 359d5851d60c4d4484eb5834f163f324ff5ffbee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CREATE TABLE t1(a int) engine=innodb;
START TRANSACTION;
insert into t1 values(9);
SET GLOBAL debug_dbug="d,crash_commit_before";
COMMIT;
ERROR HY000: Lost connection to server during query
SHOW CREATE TABLE t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `a` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
SELECT * FROM t1;
a
DROP TABLE t1;