Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
mysql> show tables;
------------------
| Tables_in_ssb_cs |
------------------
| customer |
| dim_date |
| lineorder |
| part |
| supplier |
| t1 |
| t1_c |
| t1_m |
| t2_c |
| t2_m |
------------------
10 rows in set (0.00 sec)
mysql> drop table t1,t1_c,t1_m,t2_c, t2_m;
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.
mysql> show tables;
------------------
| Tables_in_ssb_cs |
------------------
| customer |
| dim_date |
| lineorder |
| part |
| supplier |
| t1 |
| t1_c |
| t2_c |
------------------
8 rows in set (0.00 sec)