summaryrefslogtreecommitdiff
path: root/mysql-test/r/ctype_recoding.result
diff options
context:
space:
mode:
authorunknown <bar@bar.myoffice.izhnet.ru>2007-08-07 19:30:23 +0500
committerunknown <bar@bar.myoffice.izhnet.ru>2007-08-07 19:30:23 +0500
commitfa85d64d5bedc91bebf3e5ea2f895b2991a4a9d3 (patch)
tree3d95eec19df9908fe08f0ab8ccfd11071860b103 /mysql-test/r/ctype_recoding.result
parent78a52138c7aaee9ec67c1041d9b7ecd2e45fc79a (diff)
parentc6e88899460bd3478761f37a873a822f379a170d (diff)
downloadmariadb-git-fa85d64d5bedc91bebf3e5ea2f895b2991a4a9d3.tar.gz
Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28875v2
into mysql.com:/home/bar/mysql-work/mysql-5.1-new-rpl mysql-test/r/ctype_recoding.result: Auto merged mysql-test/t/ctype_recoding.test: Auto merged sql/sql_string.cc: Auto merged
Diffstat (limited to 'mysql-test/r/ctype_recoding.result')
-rw-r--r--mysql-test/r/ctype_recoding.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/ctype_recoding.result b/mysql-test/r/ctype_recoding.result
index e85d379c932..fe5842f9880 100644
--- a/mysql-test/r/ctype_recoding.result
+++ b/mysql-test/r/ctype_recoding.result
@@ -187,6 +187,14 @@ select * from t1 where a=_latin1'вася';
ERROR HY000: Illegal mix of collations (cp1251_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='
drop table t1;
set names latin1;
+set names ascii;
+create table t1 (a char(1) character set latin1);
+insert into t1 values ('a');
+select * from t1 where a='a';
+a
+a
+drop table t1;
+set names latin1;
create table t1 (a char(10) character set utf8 collate utf8_bin);
insert into t1 values (' xxx');
select * from t1 where a=lpad('xxx',10,' ');