Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3(EOL), 10.4(EOL)
-
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
|