Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.2.3, 1.2.2
-
None
-
2019-06
Description
If paraenthesis and space are in the column name,
the table creation failed.
Error message:
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. |
If work with parenthesis alone, also with space alone but not with both.
so
create table t1 ( `t)` int) engine=columnstore; |
and
create table t2 ( `t space` int) engine=columnstore; |
works,
but not
create table t3 ( `t (space` int) engine=columnstore; |