Improve installation procedure and reduce SQL limitations
(MCOL-3686)
|
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 1.4.3 |
| Type: | Sub-Task | Priority: | Major |
| Reporter: | Justin Swanhart (Inactive) | Assignee: | susil.behera |
| Resolution: | Fixed | Votes: | 2 |
| Labels: | None | ||
| Issue Links: |
|
||||||||||||||||
| Sprint: | 2020-1, 2020-2, 2020-4, 2020-5, 2020-6, 2020-7 | ||||||||||||||||
| Description |
|
mysql> create table t2(c1 int); mysql> alter table t2 engine=columnstore; |
| Comments |
| Comment by dic (Inactive) [ 2017-06-20 ] | ||||||||
|
I have the similar problem: | ||||||||
| Comment by Elias maturana [ 2019-10-09 ] | ||||||||
|
hi, They have found a solution to this problem regards | ||||||||
| Comment by Andrew Hutchings (Inactive) [ 2020-01-20 ] | ||||||||
|
PR opened, pending regression suite test creation. | ||||||||
| Comment by Andrew Hutchings (Inactive) [ 2020-01-21 ] | ||||||||
|
PR in engine and regression suite to add ALTER TABLE to/from ColumnStore and CTAS. | ||||||||
| Comment by Patrick LeBlanc (Inactive) [ 2020-01-24 ] | ||||||||
|
Merged it into develop-1.4. Merge into develop TBD. | ||||||||
| Comment by susil.behera [ 2020-02-11 ] | ||||||||
|
Build verified: 1.4.3-1 MariaDB [(none)]> CREATE TABLE db1.t1 (c1 int) ENGINE=innodb; MariaDB [(none)]> ALTER TABLE db1.t1 ENGINE=columnstore; MariaDB [(none)]> SHOW CREATE TABLE db1.t1;
------
------ MariaDB [(none)]> ALTER TABLE db1.t1 ENGINE=innodb; MariaDB [(none)]> SHOW CREATE TABLE db1.t1;
------
------ MariaDB [(none)]> |