~kalebral-deactivatedaccount/drizzle/change-error_num_to_enum-2

« back to all changes in this revision

Viewing changes to tests/r/auto_increment.result

  • Committer: Patrick Crews
  • Date: 2010-08-19 23:23:15 UTC
  • mfrom: (1720.1.3 build)
  • Revision ID: gleebix@gmail.com-20100819232315-xcpbkwc5vz7kjhrp
Rollup patch - stewart's show create table patch + a couple of fixes

Show diffs side-by-side

added added

removed removed

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