summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_system.test
diff options
context:
space:
mode:
authorunknown <bar@bar.intranet.mysql.r18.ru>2004-02-11 16:53:39 +0400
committerunknown <bar@bar.intranet.mysql.r18.ru>2004-02-11 16:53:39 +0400
commitb268952faf2a3a3eca9794018f1a368a5653aede (patch)
tree72c6cad0694d2bd8f6b418b228ce142641c812ac /mysql-test/t/func_system.test
parent24e3862cb8752618a5c8d5a41eb739e698b727cb (diff)
downloadmariadb-git-b268952faf2a3a3eca9794018f1a368a5653aede.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;