Server IP : 172.67.216.182 / Your IP : 162.158.106.48 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 : |
#Server variable option 'lower_case_table_names' sets '0' as default value #in case sensitive filesystem. Using 'lower_case_table_names=0' in case of #insensitive filsystem is not allowed. -- source include/have_case_sensitive_file_system.inc --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 ENUM values with Japanese characters in utf8 encoding # SET NAMES utf8; SET character_set_database = utf8; CREATE TABLE `T1` (`C1` ENUM('ア','イ','ウ'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T2` (`C1` ENUM('あ','い','う'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T3` (`C1` ENUM('龔','龖','龗'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb; CREATE TABLE `T4` (`C1` ENUM('ア','イ','ウ'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T5` (`C1` ENUM('あ','い','う'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T6` (`C1` ENUM('龔','龖','龗'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam; CREATE TABLE `T7` (`C1` ENUM('ア','イ','ウ'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY; CREATE TABLE `T8` (`C1` ENUM('あ','い','う'), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY; CREATE TABLE `T9` (`C1` ENUM('龔','龖','龗'), 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 ('龔'),('龖'),('龗'); SELECT * FROM `T1`; SELECT * FROM `T2`; SELECT * FROM `T3`; SELECT * FROM `T4`; SELECT * FROM `T5`; SELECT * FROM `T6`; SELECT * FROM `T7`; SELECT * FROM `T8`; SELECT * FROM `T9`; SHOW CREATE TABLE `T1`; SHOW CREATE TABLE `T2`; SHOW CREATE TABLE `T3`; SHOW CREATE TABLE `T4`; SHOW CREATE TABLE `T5`; SHOW CREATE TABLE `T6`; SHOW CREATE TABLE `T7`; SHOW CREATE TABLE `T8`; SHOW CREATE TABLE `T9`; DESC `T1`; DESC `T2`; DESC `T3`; DESC `T4`; DESC `T5`; DESC `T6`; DESC `T7`; DESC `T8`; DESC `T9`; # # Test problem with enum values after the colum with NOT NULL restriction # ALTER TABLE `T1` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T2` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T3` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T4` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T5` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T6` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T7` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T8` ADD `C2` CHAR(1) NOT NULL FIRST; ALTER TABLE `T9` ADD `C2` CHAR(1) NOT NULL FIRST; SHOW CREATE TABLE `T1`; SHOW CREATE TABLE `T2`; SHOW CREATE TABLE `T3`; SHOW CREATE TABLE `T4`; SHOW CREATE TABLE `T5`; SHOW CREATE TABLE `T6`; SHOW CREATE TABLE `T7`; SHOW CREATE TABLE `T8`; SHOW CREATE TABLE `T9`; DESC `T1`; DESC `T2`; DESC `T3`; DESC `T4`; DESC `T5`; DESC `T6`; DESC `T7`; DESC `T8`; DESC `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`;