Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.3, 10.4
-
Component/s: Data Definition - Alter Table
-
Labels:None
Description
The fix is to remove word INPLACE from patch. Because it might be incorrect in case if user actually specified ALGORITHM=INSTANT.
create table t (a varchar(100)) engine=innodb;
|
alter table t modify a varchar(300), algorithm=instant;
|
|
mysqltest: At line 11: query 'alter table t modify a varchar(300), algorithm=instant' failed: 1846: ALGORITHM=INSTANT is not supported. Reason: Cannot change column type INPLACE. Try ALGORITHM=COPY
|