403Webshell
Server IP : 45.40.142.9  /  Your IP : 216.73.216.250
Web Server : Apache
System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64
User : bayspec ( 506)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/mysql-test/r/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/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;

Youez - 2016 - github.com/yon3zu
LinuXploit