Details

    • Sub-Task
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • None
    • 1.4.3
    • None
    • None
    • 2020-1, 2020-2, 2020-4, 2020-5, 2020-6, 2020-7

    Description

      mysql> create table t2(c1 int);
      Query OK, 0 rows affected (0.01 sec)

      mysql> alter table t2 engine=columnstore;
      ERROR 1178 (42000): The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.

      Attachments

        Issue Links

          Activity

            nguyen dic (Inactive) added a comment - - edited

            I have the similar problem:
            MariaDB [employees]> ALTER TABLE salaries ENGINE = ColumnStore;
            ERROR 1178 (42000): The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.

            nguyen dic (Inactive) added a comment - - edited I have the similar problem: MariaDB [employees] > ALTER TABLE salaries ENGINE = ColumnStore; ERROR 1178 (42000): The storage engine for the table doesn't support The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.

            hi, They have found a solution to this problem

            regards

            taylox Elias maturana added a comment - hi, They have found a solution to this problem regards

            PR opened, pending regression suite test creation.

            LinuxJedi Andrew Hutchings (Inactive) added a comment - PR opened, pending regression suite test creation.

            PR in engine and regression suite to add ALTER TABLE to/from ColumnStore and CTAS.

            LinuxJedi Andrew Hutchings (Inactive) added a comment - PR in engine and regression suite to add ALTER TABLE to/from ColumnStore and CTAS.

            Merged it into develop-1.4. Merge into develop TBD.

            pleblanc Patrick LeBlanc (Inactive) added a comment - Merged it into develop-1.4. Merge into develop TBD.
            susil.behera Susil Behera added a comment -

            Build verified: 1.4.3-1

            MariaDB [(none)]> CREATE TABLE db1.t1 (c1 int) ENGINE=innodb;
            Query OK, 0 rows affected (0.015 sec)

            MariaDB [(none)]> ALTER TABLE db1.t1 ENGINE=columnstore;
            Query OK, 0 rows affected (0.179 sec)
            Records: 0 Duplicates: 0 Warnings: 0

            MariaDB [(none)]> SHOW CREATE TABLE db1.t1;
            --------------------------------------------------------------------------------------------------+

            Table Create Table

            --------------------------------------------------------------------------------------------------+

            t1 CREATE TABLE `t1` (
            `c1` int(11) DEFAULT NULL
            ) ENGINE=Columnstore DEFAULT CHARSET=latin1

            --------------------------------------------------------------------------------------------------+
            1 row in set (0.000 sec)

            MariaDB [(none)]> ALTER TABLE db1.t1 ENGINE=innodb;
            Query OK, 0 rows affected (0.338 sec)
            Records: 0 Duplicates: 0 Warnings: 0

            MariaDB [(none)]> SHOW CREATE TABLE db1.t1;
            ---------------------------------------------------------------------------------------------+

            Table Create Table

            ---------------------------------------------------------------------------------------------+

            t1 CREATE TABLE `t1` (
            `c1` int(11) DEFAULT NULL
            ) ENGINE=InnoDB DEFAULT CHARSET=latin1

            ---------------------------------------------------------------------------------------------+
            1 row in set (0.001 sec)

            MariaDB [(none)]>

            susil.behera Susil Behera added a comment - Build verified: 1.4.3-1 MariaDB [(none)] > CREATE TABLE db1.t1 (c1 int) ENGINE=innodb; Query OK, 0 rows affected (0.015 sec) MariaDB [(none)] > ALTER TABLE db1.t1 ENGINE=columnstore; Query OK, 0 rows affected (0.179 sec) Records: 0 Duplicates: 0 Warnings: 0 MariaDB [(none)] > SHOW CREATE TABLE db1.t1; ------ --------------------------------------------------------------------------------------------+ Table Create Table ------ --------------------------------------------------------------------------------------------+ t1 CREATE TABLE `t1` ( `c1` int(11) DEFAULT NULL ) ENGINE=Columnstore DEFAULT CHARSET=latin1 ------ --------------------------------------------------------------------------------------------+ 1 row in set (0.000 sec) MariaDB [(none)] > ALTER TABLE db1.t1 ENGINE=innodb; Query OK, 0 rows affected (0.338 sec) Records: 0 Duplicates: 0 Warnings: 0 MariaDB [(none)] > SHOW CREATE TABLE db1.t1; ------ ---------------------------------------------------------------------------------------+ Table Create Table ------ ---------------------------------------------------------------------------------------+ t1 CREATE TABLE `t1` ( `c1` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ------ ---------------------------------------------------------------------------------------+ 1 row in set (0.001 sec) MariaDB [(none)] >

            People

              susil.behera Susil Behera
              jswanhart Justin Swanhart (Inactive)
              Votes:
              2 Vote for this issue
              Watchers:
              8 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.