diff options
author | bar@mysql.com <> | 2005-03-25 16:08:54 +0400 |
---|---|---|
committer | bar@mysql.com <> | 2005-03-25 16:08:54 +0400 |
commit | 70abf0a046a7b8e024d03eaf8ecf4e689bd491de (patch) | |
tree | 0b1831ee34ec7e5f948d0f95d9bceb93087c90db /mysql-test/r | |
parent | eaa057e97af74def076a225a48113d9de2e09134 (diff) | |
download | mariadb-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.result | 7 |
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; |