summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorbar@mysql.com <>2005-03-25 16:08:54 +0400
committerbar@mysql.com <>2005-03-25 16:08:54 +0400
commit70abf0a046a7b8e024d03eaf8ecf4e689bd491de (patch)
tree0b1831ee34ec7e5f948d0f95d9bceb93087c90db /mysql-test/r
parenteaa057e97af74def076a225a48113d9de2e09134 (diff)
downloadmariadb-git-70abf0a046a7b8e024d03eaf8ecf4e689bd491de.tar.gz
Allow inserting of extra HKSCS and cp950 characters into a Big5 column.
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/ctype_big5.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/ctype_big5.result b/mysql-test/r/ctype_big5.result
index 8f4ee3d0558..c63704f6d9d 100644
--- a/mysql-test/r/ctype_big5.result
+++ b/mysql-test/r/ctype_big5.result
@@ -77,3 +77,10 @@ big5_bin 6109
big5_bin 61
big5_bin 6120
drop table t1;
+SET NAMES big5;
+CREATE TABLE t1 (a text) character set big5;
+INSERT INTO t1 VALUES ('ùØ');
+SELECT * FROM t1;
+a
+ùØ
+DROP TABLE t1;