~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mysqldump.test

  • Committer: Monty Taylor
  • Date: 2008-10-02 20:45:51 UTC
  • mfrom: (413.2.3 drizzle)
  • Revision ID: monty@inaugust.com-20081002204551-gousb6hhqlr6q1br
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
614
614
 
615
615
create table `t1` (
616
616
    t1_name varchar(255) default null,
617
 
    t1_id int(10) unsigned not null auto_increment,
 
617
    t1_id int(10) not null auto_increment,
618
618
    key (t1_name),
619
619
    primary key (t1_id)
620
620
) auto_increment = 1000 default charset=latin1;