mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-20 10:55:01 +00:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
10
t/pt-table-checksum/samples/issue_94.sql
Normal file
10
t/pt-table-checksum/samples/issue_94.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS `issue_94`;
|
||||
CREATE TABLE `issue_94` (
|
||||
a INT NOT NULL,
|
||||
b INT NOT NULL,
|
||||
c CHAR(16) NOT NULL,
|
||||
INDEX idx (a)
|
||||
);
|
||||
|
||||
INSERT INTO issue_94 VALUES (1,2,'apple'),(3,4,'banana'),(5,6,'kiwi'),(7,8,'orange'),(9,10,'grape'),(11,12,'coconut');
|
Reference in New Issue
Block a user