mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#60196 / Bug#11831040
Test case cannot run on embedded server. No need for precautionary cleanup of unique names.
This commit is contained in:
@ -1,9 +1,6 @@
|
||||
DROP TABLE IF EXISTS Bug_60196_FK1 ;
|
||||
DROP TABLE IF EXISTS Bug_60196_FK2 ;
|
||||
DROP TABLE IF EXISTS Bug_60196 ;
|
||||
CREATE TABLE `Bug_60196_FK1` (Primary_Key INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
CREATE TABLE `Bug_60196_FK2` (Primary_Key INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
CREATE TABLE `Bug_60196` (
|
||||
CREATE TABLE Bug_60196_FK1 (Primary_Key INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
CREATE TABLE Bug_60196_FK2 (Primary_Key INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
CREATE TABLE Bug_60196 (
|
||||
FK1_Key INT NOT NULL,
|
||||
FK2_Key INT NOT NULL,
|
||||
PRIMARY KEY (FK2_Key, FK1_Key),
|
||||
@ -46,7 +43,7 @@ FK1_Key FK2_Key
|
||||
1 1
|
||||
1 2
|
||||
1 3
|
||||
# Stop master server
|
||||
# Stop server
|
||||
# Restart server.
|
||||
#
|
||||
# Try to insert more to the example table with foreign keys.
|
||||
|
Reference in New Issue
Block a user