~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/r/crash_commit_before.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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;