~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock_multi.test

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

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;