diff options
Diffstat (limited to 'mysql-test/suite/jp/t/jp_instr_ucs2.test')
-rw-r--r-- | mysql-test/suite/jp/t/jp_instr_ucs2.test | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/mysql-test/suite/jp/t/jp_instr_ucs2.test b/mysql-test/suite/jp/t/jp_instr_ucs2.test new file mode 100644 index 00000000..a074e315 --- /dev/null +++ b/mysql-test/suite/jp/t/jp_instr_ucs2.test @@ -0,0 +1,112 @@ +--source include/have_ucs2.inc +--source include/have_innodb.inc + +--disable_warnings +drop table if exists `T1`; +drop table if exists `T2`; +drop table if exists `T3`; +drop table if exists `T4`; +drop table if exists `T5`; +drop table if exists `T6`; +drop table if exists `T7`; +drop table if exists `T8`; +drop table if exists `T9`; +--enable_warnings + +# +# Test INSTR() function with Japanese characters in ucs2 encoding +# + +SET NAMES ujis; +SET character_set_database = ucs2; +SET collation_connection = ucs2_general_ci; + +CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = innodb; +CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = innodb; +CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = innodb; +CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = myisam; +CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = myisam; +CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = myisam; +CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = MEMORY; +CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = MEMORY; +CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = ucs2 engine = MEMORY; + +INSERT INTO `T1` VALUES ('アイウエオ'); +INSERT INTO `T2` VALUES ('あいうえお'); +INSERT INTO `T3` VALUES ('龔龖龗龞龡'); +INSERT INTO `T4` VALUES ('アイウエオ'); +INSERT INTO `T5` VALUES ('あいうえお'); +INSERT INTO `T6` VALUES ('龔龖龗龞龡'); +INSERT INTO `T7` VALUES ('アイウエオ'); +INSERT INTO `T8` VALUES ('あいうえお'); +INSERT INTO `T9` VALUES ('龔龖龗龞龡'); + +#InnoDB +SELECT INSTR(`C1`,'ア') from `T1`; +SELECT INSTR(`C1`,'イ') from `T1`; +SELECT INSTR(`C1`,'ウ') from `T1`; +SELECT INSTR(`C1`,'エ') from `T1`; +SELECT INSTR(`C1`,'オ') from `T1`; +SELECT INSTR(`C1`,'ン') from `T1`; +SELECT INSTR(`C1`,'あ') from `T2`; +SELECT INSTR(`C1`,'い') from `T2`; +SELECT INSTR(`C1`,'う') from `T2`; +SELECT INSTR(`C1`,'え') from `T2`; +SELECT INSTR(`C1`,'お') from `T2`; +SELECT INSTR(`C1`,'ん') from `T2`; +SELECT INSTR(`C1`,'龔') from `T3`; +SELECT INSTR(`C1`,'龖') from `T3`; +SELECT INSTR(`C1`,'龗') from `T3`; +SELECT INSTR(`C1`,'龞') from `T3`; +SELECT INSTR(`C1`,'龡') from `T3`; +SELECT INSTR(`C1`,'丂') from `T3`; + +#MyISAM +SELECT INSTR(`C1`,'ア') from `T4`; +SELECT INSTR(`C1`,'イ') from `T4`; +SELECT INSTR(`C1`,'ウ') from `T4`; +SELECT INSTR(`C1`,'エ') from `T4`; +SELECT INSTR(`C1`,'オ') from `T4`; +SELECT INSTR(`C1`,'ン') from `T4`; +SELECT INSTR(`C1`,'あ') from `T5`; +SELECT INSTR(`C1`,'い') from `T5`; +SELECT INSTR(`C1`,'う') from `T5`; +SELECT INSTR(`C1`,'え') from `T5`; +SELECT INSTR(`C1`,'お') from `T5`; +SELECT INSTR(`C1`,'ん') from `T5`; +SELECT INSTR(`C1`,'龔') from `T6`; +SELECT INSTR(`C1`,'龖') from `T6`; +SELECT INSTR(`C1`,'龗') from `T6`; +SELECT INSTR(`C1`,'龞') from `T6`; +SELECT INSTR(`C1`,'龡') from `T6`; +SELECT INSTR(`C1`,'丂') from `T6`; + +#MEMORY +SELECT INSTR(`C1`,'ア') from `T7`; +SELECT INSTR(`C1`,'イ') from `T7`; +SELECT INSTR(`C1`,'ウ') from `T7`; +SELECT INSTR(`C1`,'エ') from `T7`; +SELECT INSTR(`C1`,'オ') from `T7`; +SELECT INSTR(`C1`,'ン') from `T7`; +SELECT INSTR(`C1`,'あ') from `T8`; +SELECT INSTR(`C1`,'い') from `T8`; +SELECT INSTR(`C1`,'う') from `T8`; +SELECT INSTR(`C1`,'え') from `T8`; +SELECT INSTR(`C1`,'お') from `T8`; +SELECT INSTR(`C1`,'ん') from `T8`; +SELECT INSTR(`C1`,'龔') from `T9`; +SELECT INSTR(`C1`,'龖') from `T9`; +SELECT INSTR(`C1`,'龗') from `T9`; +SELECT INSTR(`C1`,'龞') from `T9`; +SELECT INSTR(`C1`,'龡') from `T9`; +SELECT INSTR(`C1`,'丂') from `T9`; + +DROP TABLE `T1`; +DROP TABLE `T2`; +DROP TABLE `T3`; +DROP TABLE `T4`; +DROP TABLE `T5`; +DROP TABLE `T6`; +DROP TABLE `T7`; +DROP TABLE `T8`; +DROP TABLE `T9`; |