~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb-semi-consistent.result

mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
 
2
SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout;
 
3
SET GLOBAL innodb_lock_wait_timeout=2;
2
4
set session transaction isolation level read committed;
3
5
create table t1(a int not null) engine=innodb;
4
6
insert into t1 values (1),(2),(3),(4),(5),(6),(7);
33
35
11
34
36
7
35
37
drop table t1;
 
38
SET GLOBAL innodb_lock_wait_timeout=@orig_lock_wait_timeout ;