~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/auto_increment.result

  • Committer: Brian Aker
  • Date: 2009-08-18 07:19:56 UTC
  • mfrom: (1116.1.3 stewart)
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090818071956-nfpoe9rp3i7p50kx
Merge my branch from Stewart into one branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
  `t1_id` int NOT NULL AUTO_INCREMENT,
292
292
  PRIMARY KEY (`t1_id`),
293
293
  KEY `t1_name` (`t1_name`(191))
294
 
) ENGINE=InnoDB AUTO_INCREMENT=1003
 
294
) ENGINE=InnoDB
295
295
DROP TABLE `t1`;
296
296
create table t1(a int not null auto_increment primary key);
297
297
create table t2(a int not null auto_increment primary key, t1a int);