~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Updated pandora-build files to version 0.133

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;
4
2
set session transaction isolation level read committed;
5
3
create table t1(a int not null) engine=innodb;
6
4
insert into t1 values (1),(2),(3),(4),(5),(6),(7);
34
32
10
35
33
11
36
34
7
37
 
commit;
38
35
drop table t1;
39
 
SET GLOBAL innodb_lock_wait_timeout=@orig_lock_wait_timeout ;