There are tasks to add indexes before and after the upgrade, and there is a problem with the order of processing on different tables #44304
Labels
affects-7.1
This bug affects the 7.1.x(LTS) versions.
component/ddl
This issue is related to DDL of TiDB.
feature/developing
the related feature is in development
severity/minor
type/bug
The issue is confirmed as a bug.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
alter table t add index idx(a)
job, before this job finishes(like onStateWriteOnly
), we upgrade this TiDB.alter table t add index idx(a)
job is paused. And at this time we addalter table t1 add index idx(a)
job.2. What did you expect to see? (Required)
Do
add index
on tablet
first, then doadd index
on tablet1
.3. What did you see instead (Required)
Do
add index
on tablet1
first, then doadd index
on tablet
.4. What is your TiDB version? (Required)
master
The text was updated successfully, but these errors were encountered: