-- source include/have_innodb.inc --disable_warnings drop table if exists t1; --enable_warnings # # Bug#17530: Incorrect key truncation on table creation caused server crash. # create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb character set utf8 collate utf8_general_ci; insert into t1 values('aaa'); drop table t1;