diff options
author | unknown <bar@mysql.com> | 2005-10-21 16:58:10 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-10-21 16:58:10 +0500 |
commit | 58e09e24fd3b53fce99c55a16cb99cb67c821216 (patch) | |
tree | 1f1250cd5b279aaa568645b394fdfe760b8e0701 /mysql-test | |
parent | 8c044507ffc3118e5be85b534c1d73a75bdf58b0 (diff) | |
download | mariadb-git-58e09e24fd3b53fce99c55a16cb99cb67c821216.tar.gz |
ctype_utf8.result:
After merge fix.
mysql-test/r/ctype_utf8.result:
After merge fix.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/ctype_utf8.result | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mysql-test/r/ctype_utf8.result b/mysql-test/r/ctype_utf8.result index 7878fc50b38..874983daff2 100644 --- a/mysql-test/r/ctype_utf8.result +++ b/mysql-test/r/ctype_utf8.result @@ -1049,6 +1049,15 @@ 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 (a int); +insert into t1 values (48),(49),(50); +set names utf8; +select distinct char(a) from t1; +char(a) +0 +1 +2 +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; @@ -1148,12 +1157,3 @@ set @a:=null; execute my_stmt using @a; a b drop table if exists t1; -create table t1 (a int); -insert into t1 values (48),(49),(50); -set names utf8; -select distinct char(a) from t1; -char(a) -0 -1 -2 -drop table t1; |