MariaDB [test]> create table t42(i bigint)engine=columnstore;
|
Query OK, 0 rows affected (0.599 sec)
|
|
MariaDB [test]> rename table t42 to `таблица`;
|
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]> rename table t42 to t43;
|
Query OK, 0 rows affected (0.201 sec)
|
|
MariaDB [test]> alter table t43 rename to `таблица`;
|
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]> alter table t43 rename to t44;
|
Query OK, 0 rows affected (0.189 sec)
|