diff options
author | unknown <bar@bar.mysql.r18.ru> | 2003-05-30 23:09:35 +0500 |
---|---|---|
committer | unknown <bar@bar.mysql.r18.ru> | 2003-05-30 23:09:35 +0500 |
commit | 487a64963b2382fdf816770402fb05d0c681aa23 (patch) | |
tree | c740544d9252d2f43d5e5b1b8411dad92bceaa88 /mysql-test/t/cast.test | |
parent | d1e7a597aece2bb4aa68069dbfdb3ed85f5cfb31 (diff) | |
download | mariadb-git-487a64963b2382fdf816770402fb05d0c681aa23.tar.gz |
mysqlshow and mysqldump now send their vharacter set to server
character_set_results is now the same with character_set_client by default
Diffstat (limited to 'mysql-test/t/cast.test')
-rw-r--r-- | mysql-test/t/cast.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/cast.test b/mysql-test/t/cast.test index 59b8f3b0c75..8241d491465 100644 --- a/mysql-test/t/cast.test +++ b/mysql-test/t/cast.test @@ -16,6 +16,7 @@ select cast("1:2:3" as TIME); # # Character set convertion # +set names binary; select cast(_latin1'test' as char character set latin2); select cast(_koi8r'ΤΕΣΤ' as char character set cp1251); create table t1 select cast(_koi8r'ΤΕΣΤ' as char character set cp1251) as t; |