Commit 25db70f9 authored by Marko Mäkelä's avatar Marko Mäkelä

Fix innodb.innodb_mysql

It is unclear for how long the result has been broken, because
./mtr --big-test is not run regularly.
parent 9e4a5a81
......@@ -1166,7 +1166,7 @@ drop table t1,t2;
create table t1(f1 varchar(800) binary not null, key(f1))
character set utf8 collate utf8_general_ci;
Warnings:
Warning 1071 Specified key was too long; max key length is 767 bytes
Note 1071 Specified key was too long; max key length is 767 bytes
insert into t1 values('aaa');
drop table t1;
CREATE TABLE t1 (a INT PRIMARY KEY, b INT, c FLOAT, KEY b(b)) ENGINE = INNODB;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment