Server IP : 104.21.38.3 / Your IP : 172.70.208.102 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/mysql-test/t/ |
Upload File : |
# # Get deafult engine value # --let $DEFAULT_ENGINE = `SELECT @@global.default_storage_engine` # # Test of force of lower-case-table-names=0 on # a case sensitive file system. # #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_lowercase0.inc --source include/have_case_sensitive_file_system.inc --echo # --echo # BUG#18923685: PROPERLY INITIALIZE DB OPTION HASH TABLE --echo # CREATE DATABASE FoO COLLATE ascii_bin; CREATE DATABASE Foo COLLATE utf8_unicode_ci; USE FoO; CREATE TABLE t1(a INT); --echo # t1 should inherit ascii_bin --replace_result $DEFAULT_ENGINE ENGINE SHOW CREATE TABLE t1; DROP TABLE t1; USE Foo; CREATE TABLE t1(a INT); --echo # t1 should inherit utf8_unicode_ci --replace_result $DEFAULT_ENGINE ENGINE SHOW CREATE TABLE t1; DROP TABLE t1; DROP DATABASE FoO; DROP DATABASE Foo; USE test; --echo # End of 5.6 tests