Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 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 : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
--echo Bug #18412598 UNCLEAN SYSTEM SHUTDOWN RECOVERY FAILS --echo FOR SCHEMA WITH CAPITAL LETTERS --source include/have_innodb.inc --source include/not_embedded.inc --source include/have_case_insensitive_file_system.inc # Start the server with innodb-fast-shutdown=2,so that # during next invocation of server it enters crash # recovery mode create database MYDB; USE MYDB; CREATE TABLE mytable (id int primary key) ENGINE=innodb; CREATE TABLE FOO (id int,constraint FOREIGN KEY (id) REFERENCES mytable(id) ON DELETE CASCADE) ENGINE=innodb; CREATE TABLE mytable_ref (id int,constraint FOREIGN KEY (id) REFERENCES FOO(id) ON DELETE CASCADE) ENGINE=innodb; INSERT INTO mytable VALUES (10),(20),(30),(40); INSERT INTO FOO VALUES (20),(10); INSERT INTO mytable_ref VALUES (20),(10); SHOW VARIABLES LIKE 'innodb_fast_shutdown'; START TRANSACTION; INSERT INTO mytable VALUES (50); INSERT INTO FOO VALUES (50); INSERT INTO mytable_ref VALUES (50); # Stop the server --exec echo "wait" > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect --shutdown_server --source include/wait_until_disconnected.inc --echo # Restart the server. This will go into crash recovery mode --exec echo "restart: --innodb-fast-shutdown=0 " > $MYSQLTEST_VARDIR/tmp/mysqld.1.expect --enable_reconnect --source include/wait_until_connected_again.inc USE MYDB; SELECT * FROM mytable; SELECT * FROM FOO; SELECT * FROM mytable_ref; DELETE FROM mytable WHERE id =10; SELECT * FROM FOO; SELECT * FROM mytable_ref; # Create table with mixed names,this should # fail in case insensitive systems --error ER_TABLE_EXISTS_ERROR CREATE TABLE MYtable (id int) ENGINE=innodb; --error ER_TABLE_EXISTS_ERROR CREATE TABLE Foo (id int) ENGINE=innodb; DROP TABLE mytable_ref,FOO; DROP TABLE mytable; use test; DROP DATABASE MYDB;