mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 21:51:21 +00:00
Fix bug that caused not all "right keys" to be compared in certain cases.
This commit is contained in:
8
t/lib/samples/dupekeys/dupe-cluster-bug-894140.sql
Normal file
8
t/lib/samples/dupekeys/dupe-cluster-bug-894140.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE `bug_894140` (
|
||||
`row_id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`player_id` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`row_id`),
|
||||
UNIQUE KEY `row_id` (`row_id`),
|
||||
UNIQUE KEY `player_id` (`player_id`),
|
||||
KEY `player_id_2` (`player_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8
|
Reference in New Issue
Block a user