Details
-
New Feature
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Do
-
1.0.3
-
None
Description
ColumnStore uses the following syntax for online alter table (as at the time when InfiniDB added support for of online alter table, MySQL 5.1 did not support it):
select calonlinealter('alter table foo add column col7 int;');
|
alter table foo add column col7 int comment 'schema sync only'
|
MariaDB 10.1.x introduced support for this syntax:
ALTER [ONLINE] TABLE tbl_name
|
alter_specification [, alter_specification]
|
ColumnStore should be aligned to use the MariaDB 10.1.x syntax and calonlinealter should be deprecated.