summaryrefslogtreecommitdiff
path: root/mysql-test/t/mysql.test
diff options
context:
space:
mode:
authorunknown <kaa@polly.local>2007-02-21 19:50:48 +0300
committerunknown <kaa@polly.local>2007-02-21 19:50:48 +0300
commita1338e0583662c4182904b5a0f11f3a2bcb91bc7 (patch)
treece5212d0cdea6fb372fc0fb2ab26330c96db0c88 /mysql-test/t/mysql.test
parentd74016bbb4b847aa0b005a02ed6d4980c48208f0 (diff)
downloadmariadb-git-a1338e0583662c4182904b5a0f11f3a2bcb91bc7.tar.gz
Moved the test requiring cp932 to a separate unit.
This is for bug #18743. mysql-test/t/mysql.test: Moved the test requiring cp932 to a separate unit mysql-test/r/mysql_cp932.result: Moved the test requiring cp932 to a separate unit mysql-test/t/mysql_cp932.test: Moved the test requiring cp932 to a separate unit
Diffstat (limited to 'mysql-test/t/mysql.test')
-rw-r--r--mysql-test/t/mysql.test14
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/t/mysql.test b/mysql-test/t/mysql.test
index 2306d981ad8..b999c5c0029 100644
--- a/mysql-test/t/mysql.test
+++ b/mysql-test/t/mysql.test
@@ -44,20 +44,6 @@ unlock tables;
drop table t1;
#
-# BUG#16217 - MySQL client misinterprets multi-byte char as escape `\'
-#
-
-# new command \C or charset
---exec $MYSQL --default-character-set=utf8 test -e "\C cp932 \g"
---exec $MYSQL --default-character-set=cp932 test -e "charset utf8;"
-
-# its usage to switch internally in mysql to requested charset
---exec $MYSQL --default-character-set=utf8 test -e "charset cp932; select 'ソ'; create table t1 (c_cp932 TEXT CHARACTER SET cp932); insert into t1 values('ソ'); select * from t1; drop table t1;"
---exec $MYSQL --default-character-set=utf8 test -e "charset cp932; select 'ソ'"
---exec $MYSQL --default-character-set=utf8 test -e "/*charset cp932 */; set character_set_client= cp932; select 'ソ'"
---exec $MYSQL --default-character-set=utf8 test -e "/*!\C cp932 */; set character_set_client= cp932; select 'ソ'"
-
-#
# Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string".
#
--exec $MYSQL -t test -e "create table t1 (col1 binary(4), col2 varchar(10), col3 int); insert into t1 values ('a', 'b', 123421),('a ', '0123456789', 4), ('abcd', '', 4); select concat('>',col1,'<'), col2, col3 from t1; drop table t1;" 2>&1