Commit 92f80fbb authored by unknown's avatar unknown

ctype_utf8.result:

  after merge fix
  ,


mysql-test/r/ctype_utf8.result:
  after merge fix
  ,
parent df3e57f5
...@@ -1044,6 +1044,11 @@ hex(a) ...@@ -1044,6 +1044,11 @@ hex(a)
5B 5B
E880BD E880BD
drop table t1; drop table t1;
set names 'latin1';
create table t1 (a varchar(255)) default charset=utf8;
select * from t1 where find_in_set('-1', a);
a
drop table t1;
CREATE TABLE t1(id varchar(20) NOT NULL) DEFAULT CHARSET=utf8; CREATE TABLE t1(id varchar(20) NOT NULL) DEFAULT CHARSET=utf8;
INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa'); INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa');
SELECT id FROM t1; SELECT id FROM t1;
...@@ -1126,8 +1131,3 @@ a ...@@ -1126,8 +1131,3 @@ a
i i
drop table t1,t2; drop table t1,t2;
set names 'latin1';
create table t1 (a varchar(255)) default charset=utf8;
select * from t1 where find_in_set('-1', a);
a
drop table t1;
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