diff --git a/mysql-test/innodb-index.result b/mysql-test/innodb-index.result index 5b509fb5273..738c20af388 100644 --- a/mysql-test/innodb-index.result +++ b/mysql-test/innodb-index.result @@ -842,7 +842,7 @@ Table Op Msg_type Msg_text test.t1 check status OK explain select * from t1 where b like 'adfd%'; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range b b 769 NULL 11 Using where +1 SIMPLE t1 ALL b NULL NULL NULL 15 Using where create table t2(a int, b varchar(255), primary key(a,b)) engine=innodb; insert into t2 select a,left(b,255) from t1; drop table t1;