~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock_multi.test

Merged in changes from Andrey.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
connection locker;
231
231
# Disable warnings to allow test to run also without InnoDB
232
232
--disable_warnings
233
 
create table t1 (f1 int(12) unsigned not null auto_increment, primary key(f1)) engine=innodb;
 
233
create table t1 (f1 int(12) not null auto_increment, primary key(f1)) engine=innodb;
234
234
--enable_warnings
235
235
lock tables t1 write;
236
236
connection writer;