mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 11:07:58 +00:00
26 lines
1020 B
Plaintext
26 lines
1020 B
Plaintext
# ########################################################################
|
|
# test.domains
|
|
# ########################################################################
|
|
|
|
# PRIMARY (`id`)
|
|
# domain (`domain`)
|
|
# unique_key_domain (`domain`)
|
|
|
|
# Uniqueness of domain ignored because unique_key_domain is a duplicate constraint
|
|
# domain is a duplicate of unique_key_domain
|
|
# Key definitions:
|
|
# UNIQUE KEY `domain` (`domain`),
|
|
# UNIQUE KEY `unique_key_domain` (`domain`)
|
|
# Column types:
|
|
# `domain` varchar(175) character set utf8 collate utf8_bin not null
|
|
# To remove this duplicate index, execute:
|
|
ALTER TABLE `test`.`domains` DROP INDEX `domain`;
|
|
|
|
# ########################################################################
|
|
# Summary of indexes
|
|
# ########################################################################
|
|
|
|
# Size Duplicate Indexes 527
|
|
# Total Duplicate Indexes 1
|
|
# Total Indexes 3
|