~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock_multi.test

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

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;