~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/innodb-semi-consistent.test

  • 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
-- source include/not_embedded.inc
1
2
-- source include/have_innodb.inc
2
3
 
3
4
--disable_warnings
10
11
connect (b,localhost,root,,);
11
12
connection a;
12
13
set session transaction isolation level read committed;
13
 
create table t1(a int not null) engine=innodb;
 
14
create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
14
15
insert into t1 values (1),(2),(3),(4),(5),(6),(7);
15
16
set autocommit=0;
16
17
# this should lock the entire table