mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-14 23:40:58 +00:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
11
t/pt-duplicate-key-checker/samples/issue_295.sql
Normal file
11
t/pt-duplicate-key-checker/samples/issue_295.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
DROP DATABASE IF EXISTS issue_295;
|
||||
CREATE DATABASE issue_295;
|
||||
USE issue_295;
|
||||
|
||||
DROP TABLE IF EXISTS `t`;
|
||||
CREATE TABLE `t` (
|
||||
a INT NOT NULL,
|
||||
b INT NOT NULL,
|
||||
PRIMARY KEY (a),
|
||||
INDEX b_a (b, a)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
Reference in New Issue
Block a user