mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-23 21:05:00 +00:00
Add lib/, t/lib/, and sandbox/. All modules are updated and passing on MySQL 5.1.
This commit is contained in:
7
t/lib/samples/dupe_fk_one.sql
Normal file
7
t/lib/samples/dupe_fk_one.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE `dupe_key` (
|
||||
`a` int(11) default NULL,
|
||||
`b` int(11) default NULL,
|
||||
KEY `a` (`a`),
|
||||
CONSTRAINT `t1_ibfk_1` FOREIGN KEY (`a`, `b`) REFERENCES `t2` (`a`, `b`),
|
||||
CONSTRAINT `t1_ibfk_2` FOREIGN KEY (`b`, `a`) REFERENCES `t2` (`b`, `a`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
Reference in New Issue
Block a user