mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
Moved the test requiring cp932 to a separate unit.
This is for bug #18743.
This commit is contained in:
parent
5b5dc7f840
commit
05750812d6
3 changed files with 32 additions and 14 deletions
10
mysql-test/r/mysql_cp932.result
Normal file
10
mysql-test/r/mysql_cp932.result
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
ソ
|
||||||
|
ソ
|
||||||
|
c_cp932
|
||||||
|
ソ
|
||||||
|
ソ
|
||||||
|
ソ
|
||||||
|
繧ス
|
||||||
|
繧ス
|
||||||
|
ソ
|
||||||
|
ソ
|
|
@ -43,20 +43,6 @@ lock tables t1 write;
|
||||||
unlock tables;
|
unlock tables;
|
||||||
drop table t1;
|
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".
|
# Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string".
|
||||||
#
|
#
|
||||||
|
|
22
mysql-test/t/mysql_cp932.test
Normal file
22
mysql-test/t/mysql_cp932.test
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# This test should work in embedded server after we fix mysqltest
|
||||||
|
-- source include/not_embedded.inc
|
||||||
|
|
||||||
|
#
|
||||||
|
# Tests from mysql.test which require the cp932 character set
|
||||||
|
#
|
||||||
|
-- source include/have_cp932.inc
|
||||||
|
|
||||||
|
#
|
||||||
|
# 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 'ƒ\'"
|
||||||
|
|
Loading…
Add table
Reference in a new issue