AnonSec Shell
Server IP : 185.86.78.101  /  Your IP : 216.73.216.213
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/r/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /www/server/mysql/mysql-test/r/innodb_recovery_with_upper_case_names.result
Bug #18412598  UNCLEAN SYSTEM SHUTDOWN RECOVERY FAILS
FOR SCHEMA WITH CAPITAL LETTERS
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';
Variable_name	Value
innodb_fast_shutdown	2
START TRANSACTION;
INSERT INTO mytable VALUES (50);
INSERT INTO FOO VALUES (50);
INSERT INTO mytable_ref VALUES (50);
# Restart the server. This will go into crash recovery mode
USE MYDB;
SELECT * FROM mytable;
id
10
20
30
40
SELECT * FROM FOO;
id
10
20
SELECT * FROM mytable_ref;
id
10
20
DELETE FROM mytable WHERE id =10;
SELECT * FROM FOO;
id
20
SELECT * FROM mytable_ref;
id
20
CREATE TABLE MYtable (id int) ENGINE=innodb;
ERROR 42S01: Table 'mytable' already exists
CREATE TABLE Foo (id int) ENGINE=innodb;
ERROR 42S01: Table 'foo' already exists
DROP TABLE mytable_ref,FOO;
DROP TABLE mytable;
use test;
DROP DATABASE MYDB;

Anon7 - 2022
AnonSec Team