~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/auto_increment.result

Merge Stewart, this increases the max size of indexed columns.

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
KEY (t1_name),
278
278
PRIMARY KEY (t1_id)
279
279
) AUTO_INCREMENT = 1000;
280
 
Warnings:
281
 
Warning 1071    Specified key was too long; max key length is 767 bytes
282
280
INSERT INTO t1 (t1_name) VALUES('MySQL');
283
281
INSERT INTO t1 (t1_name) VALUES('MySQL');
284
282
INSERT INTO t1 (t1_name) VALUES('MySQL');
293
291
  `t1_name` varchar(255) DEFAULT NULL,
294
292
  `t1_id` int NOT NULL AUTO_INCREMENT,
295
293
  PRIMARY KEY (`t1_id`),
296
 
  KEY `t1_name` (`t1_name`(191))
 
294
  KEY `t1_name` (`t1_name`)
297
295
) ENGINE=InnoDB
298
296
DROP TABLE `t1`;
299
297
create table t1(a int not null auto_increment primary key);