mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-26 05:58:16 +00:00
PT-572 Fixes for MySQL 8
- Updated sandbox data file - Fixes for pt-upgrade since there is no query_cache in MySQL 8 - Updates for SchemaIterator since there are new/renamed tables in MySQL 8 - Disabled some tests due to errors in MySQL 8.0.4-rc
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DROP DATABASE IF EXISTS test;
|
||||
create database if not exists test;
|
||||
use test;
|
||||
|
||||
|
@@ -9,11 +9,11 @@ CREATE TABLE parent (
|
||||
CREATE TABLE child1 (
|
||||
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
parent_id INT NOT NULL,
|
||||
FOREIGN KEY fk1 (parent_id) REFERENCES parent (id) ON DELETE RESTRICT
|
||||
FOREIGN KEY child1_ibfk1 (parent_id) REFERENCES parent (id) ON DELETE RESTRICT
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
CREATE TABLE child2 (
|
||||
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
parent_id INT NOT NULL,
|
||||
FOREIGN KEY fk1 (parent_id) REFERENCES parent (id) ON DELETE CASCADE
|
||||
FOREIGN KEY child2_ibfk1 (parent_id) REFERENCES parent (id) ON DELETE CASCADE
|
||||
) ENGINE=InnoDB;
|
||||
|
Reference in New Issue
Block a user