mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-25 05:44:59 +00:00
PT-2400 - pt-table-checksum reports the error for warning code 4164
- Fixed typo - Added test case
This commit is contained in:
13
t/pt-table-checksum/samples/pt-2400.sql
Normal file
13
t/pt-table-checksum/samples/pt-2400.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
DROP DATABASE IF EXISTS `pt-2400`;
|
||||
CREATE DATABASE `pt-2400`;
|
||||
USE `pt-2400`;
|
||||
CREATE TABLE `apple` (
|
||||
`id` int NOT NULL,
|
||||
`name` varchar(255) NOT NULL,
|
||||
PRIMARY KEY (`id`,`name`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
INSERT INTO `apple` VALUES
|
||||
(1, 'Granny Smith'),
|
||||
(2, 'Red Delicious'),
|
||||
(3, 'Golden Apple');
|
Reference in New Issue
Block a user