~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2009-06-16 00:46:49 UTC
  • mto: (1119.2.6 merge)
  • mto: This revision was merged to the branch mainline in revision 1124.
  • Revision ID: stewart@flamingspork.com-20090616004649-k2qt6b31sorpi6am
make type_blob test not leave tables behind

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 ;