Commit 3329f316 authored by unknown's avatar unknown

ctype_utf8.test, ctype_utf8.result:

  Wrong handler.


mysql-test/r/ctype_utf8.result:
  Wrong handler.
mysql-test/t/ctype_utf8.test:
  Wrong handler.
parent ae0acc84
......@@ -784,7 +784,7 @@ create table t1 (
a int primary key,
b varchar(6),
index b3(b(3))
) engine=myisam character set=utf8;
) engine=innodb character set=utf8;
insert into t1 values(1,'foo'),(2,'foobar');
select * from t1 where b like 'foob%';
a b
......
......@@ -630,7 +630,7 @@ create table t1 (
a int primary key,
b varchar(6),
index b3(b(3))
) engine=myisam character set=utf8;
) engine=innodb character set=utf8;
--enable_warnings
insert into t1 values(1,'foo'),(2,'foobar');
select * from t1 where b like 'foob%';
......
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