diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-13 18:54:53 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-13 18:54:53 +0200 |
commit | 25db70f912f9c2535d7b49b123e042815cb7b1a6 (patch) | |
tree | d419d8e72c24a92a050c7668fb98e2501255232f /mysql-test | |
parent | 9e4a5a81fc062c082312afb230d2b8d4cf6b11cf (diff) | |
download | mariadb-git-25db70f912f9c2535d7b49b123e042815cb7b1a6.tar.gz |
Fix innodb.innodb_mysql
It is unclear for how long the result has been broken, because
./mtr --big-test is not run regularly.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb_mysql.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_mysql.result b/mysql-test/suite/innodb/r/innodb_mysql.result index 0272ecd82b5..877f20cf195 100644 --- a/mysql-test/suite/innodb/r/innodb_mysql.result +++ b/mysql-test/suite/innodb/r/innodb_mysql.result @@ -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; |