mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
ctype_utf8.result:
after merge fix , mysql-test/r/ctype_utf8.result: after merge fix ,
This commit is contained in:
parent
df3e57f51f
commit
92f80fbb86
1 changed files with 5 additions and 5 deletions
|
@ -1044,6 +1044,11 @@ hex(a)
|
|||
5B
|
||||
E880BD
|
||||
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;
|
||||
INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa');
|
||||
SELECT id FROM t1;
|
||||
|
@ -1126,8 +1131,3 @@ a
|
|||
i
|
||||
い
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue