mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 13:11:32 +00:00
7 lines
162 B
SQL
7 lines
162 B
SQL
CREATE TABLE `innodb_dupe` (
|
|
`a` int(11) NOT NULL,
|
|
`b` int(11) default NULL,
|
|
PRIMARY KEY (`a`),
|
|
KEY `b` (`b`,`a`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|