summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_system.test
diff options
context:
space:
mode:
authorbar@bar.intranet.mysql.r18.ru <>2004-02-11 16:53:39 +0400
committerbar@bar.intranet.mysql.r18.ru <>2004-02-11 16:53:39 +0400
commit4e7712307997d044568ffe895a6de3de6b1608ed (patch)
tree72c6cad0694d2bd8f6b418b228ce142641c812ac /mysql-test/t/func_system.test
parent251bf4ab85788c1232e7434752f7f5d5cab18a0d (diff)
downloadmariadb-git-4e7712307997d044568ffe895a6de3de6b1608ed.tar.gz
Bug 2701: Function CHARSET() inconsistency
CONVERT3 was removed, it was for test purposes, and rather harmful.
Diffstat (limited to 'mysql-test/t/func_system.test')
-rw-r--r--mysql-test/t/func_system.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/func_system.test b/mysql-test/t/func_system.test
index f3b9b4ffc3f..a05b80ca56b 100644
--- a/mysql-test/t/func_system.test
+++ b/mysql-test/t/func_system.test
@@ -23,4 +23,10 @@ create table t1 (version char(40)) select database(), user(), version() as 'vers
show create table t1;
drop table t1;
+select charset(charset(_utf8'a')), charset(collation(_utf8'a'));
+select collation(charset(_utf8'a')), collation(collation(_utf8'a'));
+create table t1 select charset(_utf8'a'), collation(_utf8'a');
+show create table t1;
+drop table t1;
+
select TRUE,FALSE,NULL;