diff options
author | bar@bar.mysql.r18.ru <> | 2003-05-30 23:09:35 +0500 |
---|---|---|
committer | bar@bar.mysql.r18.ru <> | 2003-05-30 23:09:35 +0500 |
commit | bb611fa0a26908abf024586294d2f8f1204c5243 (patch) | |
tree | c740544d9252d2f43d5e5b1b8411dad92bceaa88 /mysql-test/t/cast.test | |
parent | e15ea0291a967f7fc9ff928abab4f70bf7d7226b (diff) | |
download | mariadb-git-bb611fa0a26908abf024586294d2f8f1204c5243.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; |