1
0
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:
unknown
2011-03-09 11:15:55 -06:00
parent 537d8efbe4
commit 64e1959598
2 changed files with 13 additions and 22 deletions

View File

@ -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.