INPLACE列表

MySQL online DDL分为INPLACE和COPY两种方式,通过在ALTER语句的ALGORITHM参数指定,两种方式除了实现方式不同外,整个过程中MDL上锁也是不一样的。 对于alter table test.t1 add column name varchar(10), algorithm=copy;,alter用copy到临时的方式来做。
共1页/1条