gpt4 book ai didi

mysql - 我如何使用 Percona 的 `CREATE INDEX` 工具执行 `pt-online-schema-change`?

转载 作者:可可西里 更新时间:2023-11-01 06:35:47 25 4
gpt4 key购买 nike

如何使用 Percona 的 pt-online-schema-change 工具执行 CREATE INDEX?我想做类似的事情:


使用 BTREE 在 table_name (col_1, col_2, ...) 上创建唯一索引 idx_name

根据documentation ,我必须使用 --alter 参数,然后使用适当的 ALTER TABLE 语句,减去前面的 ALTER TABLE table_name 短语。但是,CREATE INDEX 不是以 ALTER TABLE 开头的,表名嵌入在 CREATE INDEX 语句中。那么我该如何前进?

最佳答案

根据documentation对于 MySQL 创建索引:

CREATE INDEX is mapped to an ALTER TABLE statement to create indexes.

因此,您可以将我的示例转换为 SQL 语句:


ALTER TABLE table_name ADD UNIQUE INDEX idx_name (col_1, col_2, ...) 使用 BTREE

导致 Percona 架构修改语句:


使用 BTREE 添加唯一索引 idx_name (col_1, col_2, ...)

关于mysql - 我如何使用 Percona 的 `CREATE INDEX` 工具执行 `pt-online-schema-change`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26167066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com