|
Hello,
I am trying to create a simple table, where one column name is "action".
Columnstore doesn't allow me to create it, with or without back quotes.
MariaDB [test]> create table t1 (`action` int) engine=innodb;
|
Query OK, 0 rows affected (0.02 sec)
|
|
MariaDB [test]> create table t2 (`action` int) 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.
|
MariaDB [test]> create table t2 (`othername` int) engine=columnstore;
|
Query OK, 0 rows affected (0.14 sec)
|
Is this a known limitation ?
Thanks for checking!
Joffrey
|