Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.4(EOL)
-
None
Description
create table t1(c varchar(9)) engine=innodb row_format=compressed;
|
insert into t1 values (repeat('a', 9));
|
alter table t1 modify c varchar(10), algorithm=nocopy;
|
In this ALTER TABLE only data dictionary and cache are updated. So, in fact it's an INSTANT operation.
Attachments
Issue Links
- relates to
-
MDEV-18326 Refactor some ALTER column operations to use innobase_instant_try()
- Stalled