~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/auto_increment.result

  • Committer: Brian Aker
  • Date: 2009-05-18 23:30:39 UTC
  • mfrom: (991.1.7 for-brian)
  • Revision ID: brian@gaz-20090518233039-bok1tw92wr1jvp13
Merge Stewart.

Show diffs side-by-side

added added

removed removed

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