PR-996 - Add invisible option to pt-duplicate-key-checker

- Fixed test case
This commit is contained in:
Sveta Smirnova
2025-08-25 16:44:47 +03:00
parent 01db562b10
commit afd8ccbbd5

View File

@@ -9,7 +9,7 @@
# Column types: # Column types:
# `a` int(11) default null # `a` int(11) default null
# `b` int(11) default null # `b` int(11) default null
# To remove this duplicate index, execute: # To make this index invisible, execute:
ALTER TABLE `test`.`dupe_key` ALTER INDEX `a` INVISIBLE; ALTER TABLE `test`.`dupe_key` ALTER INDEX `a` INVISIBLE;
# ######################################################################## # ########################################################################