mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix innodb.innodb_mysql
It is unclear for how long the result has been broken, because ./mtr --big-test is not run regularly.
This commit is contained in:
@ -1166,7 +1166,7 @@ drop table t1,t2;
|
|||||||
create table t1(f1 varchar(800) binary not null, key(f1))
|
create table t1(f1 varchar(800) binary not null, key(f1))
|
||||||
character set utf8 collate utf8_general_ci;
|
character set utf8 collate utf8_general_ci;
|
||||||
Warnings:
|
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');
|
insert into t1 values('aaa');
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (a INT PRIMARY KEY, b INT, c FLOAT, KEY b(b)) ENGINE = INNODB;
|
CREATE TABLE t1 (a INT PRIMARY KEY, b INT, c FLOAT, KEY b(b)) ENGINE = INNODB;
|
||||||
|
Reference in New Issue
Block a user