Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: online ddl是否“将job队列中的DDL语句对应的表全部锁住为只读状态”

The official documentation describes online DDL as follows:
When the database executes DDL statements, it uses certain methods to ensure that the DDL execution does not block user operations and allows users to submit modifications during the DDL execution. It also ensures the correctness and consistency of the data of the corresponding objects during the execution process.
Dear teachers, does online DDL lock all the tables corresponding to the DDL statements in the job queue to a read-only state? Because although online DDL allows modifications to be submitted during the DDL execution, submission does not mean immediate execution.
I am not sure if the description “locks all the tables corresponding to the DDL statements in the job queue to a read-only state” is accurate.