mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-18 09:43:09 +00:00
Fix bug 1217013: exact dupe unique keys not detected.
This commit is contained in:
7
t/lib/samples/dupekeys/simple_dupe_bug_1217013.sql
Normal file
7
t/lib/samples/dupekeys/simple_dupe_bug_1217013.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE `domains` (
|
||||
`id` bigint(20) NOT NULL,
|
||||
`domain` varchar(175) COLLATE utf8_bin NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `domain` (`domain`),
|
||||
UNIQUE KEY `unique_key_domain` (`domain`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin
|
Reference in New Issue
Block a user