~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-08-25 20:54:20 UTC
  • mfrom: (1730.2.1 staging)
  • Revision ID: lbieber@orisndriz03-20100825205420-nbjf0o6po6b8vc6k
 Merge Patrick - add extra lines to gdbinit on OSX

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 ;