Server IP : 172.67.216.182 / Your IP : 172.71.81.92 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/jp/t/ |
Upload File : |
--source include/have_utf8.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 utf8 encoding # SET NAMES utf8; SET character_set_database = utf8; CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY; CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY; CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 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`;