Server IP : 172.67.216.182 / Your IP : 162.158.189.64 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/innodb/r/ |
Upload File : |
set global innodb_file_per_table = 0; set global innodb_file_per_table = 1; call mtr.add_suppression("No space left on device"); call mtr.add_suppression("table.+ full"); call mtr.add_suppression("Cannot create file"); call mtr.add_suppression("\\[ERROR\\] InnoDB: table .* does not exist " "in the InnoDB internal"); set session debug="+d,ib_ddl_crash_during_tablespace_alloc"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; ERROR HY000: Lost connection to MySQL server during query create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; insert into t1 values (10, 11); select * from t1; a b 10 11 drop table t1; set session debug="+d,ib_create_table_fail_at_create_index"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; ERROR HY000: Index column size too large. The maximum column size is 3072 bytes. insert into t1 values (10, 11); ERROR 42S02: Table 'test.t1' doesn't exist set session debug="-d,ib_create_table_fail_at_create_index"; create temporary table t1 (a int, b int, primary key(a), index(b)) engine = innodb; insert into t1 values (10, 11); drop table t1; drop table if exists parent,child; create temporary table parent ( i int primary key ) engine = innodb; create table child ( j int references parent(i)) engine = innodb; insert into parent values (1),(2),(3),(4); insert into child values (1),(2),(3),(4); insert into child values (5),(6); select * from parent; i 1 2 3 4 select * from child; j 1 2 3 4 5 6 # restart select * from parent ; ERROR 42S02: Table 'test.parent' doesn't exist select * from child ; j 1 2 3 4 5 6 drop table child;