diff options
author | unknown <bar@mysql.com> | 2005-03-16 14:35:44 +0400 |
---|---|---|
committer | unknown <bar@mysql.com> | 2005-03-16 14:35:44 +0400 |
commit | 49a61208e660e054f4eb716fdc1bf3071a603e57 (patch) | |
tree | debcee5802c88f5e81f7af034a0df15759df53b7 /mysql-test | |
parent | 2576beab6b256a8858e5d669f91a424aa836d23c (diff) | |
parent | c703954578ce3c806112bbc2319988fc289ab8a1 (diff) | |
download | mariadb-git-49a61208e660e054f4eb716fdc1bf3071a603e57.tar.gz |
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/usr/home/bar/mysql-4.1-bug8785
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/ctype_utf8.result | 7 | ||||
-rw-r--r-- | mysql-test/t/ctype_utf8.test | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/ctype_utf8.result b/mysql-test/r/ctype_utf8.result index 13105e2276c..314567a1544 100644 --- a/mysql-test/r/ctype_utf8.result +++ b/mysql-test/r/ctype_utf8.result @@ -861,6 +861,13 @@ user c one <one> two <two> DROP TABLE t1; +create table t1 (f1 varchar(1) not null) default charset utf8; +insert into t1 values (''), (''); +select concat(concat(_latin1'->',f1),_latin1'<-') from t1; +concat(concat(_latin1'->',f1),_latin1'<-') +-><- +-><- +drop table t1; select convert(_koi8r'É' using utf8) < convert(_koi8r'Ê' using utf8); convert(_koi8r'É' using utf8) < convert(_koi8r'Ê' using utf8) 1 diff --git a/mysql-test/t/ctype_utf8.test b/mysql-test/t/ctype_utf8.test index 35f2b2642be..2c498cd1922 100644 --- a/mysql-test/t/ctype_utf8.test +++ b/mysql-test/t/ctype_utf8.test @@ -695,6 +695,15 @@ SELECT user, CONCAT('<', user, '>') AS c FROM t1; DROP TABLE t1; # +# Bug#8785 +# the same problem with the above, but with nested CONCATs +# +create table t1 (f1 varchar(1) not null) default charset utf8; +insert into t1 values (''), (''); +select concat(concat(_latin1'->',f1),_latin1'<-') from t1; +drop table t1; + +# # Bug#8385: utf8_general_ci treats Cyrillic letters I and SHORT I as the same # select convert(_koi8r'É' using utf8) < convert(_koi8r'Ê' using utf8); |