Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: DDL 语句可以在 TiDB 中并行执行
Regarding the execution process of DDL statements, which of the following statements is correct?
A. DDL statements can be executed in parallel in TiDB
B. At the same time, there cannot be multiple DDL statements waiting to be executed
C. At the same time, only one TiDB Server can execute DDL statements
D. DDL statements waiting to be executed are persisted in the storage of the TiDB Server
Student’s answer: C. At the same time, only one TiDB Server can execute DDL statements
Correct answer: C. At the same time, only one TiDB Server can execute DDL statements
A. DDL statements can be executed in parallel in TiDB - Why is this incorrect? Adding an index can be executed in parallel with DDL.