Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Do
-
1.1.6
-
None
Description
If you try to execute the following:
CREATE TABLE tab (
|
`id` int(11) DEFAULT NULL,
|
`str` varchar(50) DEFAULT NULL
|
) ENGINE=Columnstore DEFAULT CHARSET=latin1;
|
ALTER TABLE tab CONVERT TO CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
|
You'll get an error:
MariaDB [db1]> CREATE TABLE tab (
|
-> `id` int(11) DEFAULT NULL,
|
-> `str` varchar(50) DEFAULT NULL
|
-> ) ENGINE=Columnstore DEFAULT CHARSET=latin1;
|
Query OK, 0 rows affected (0.19 sec)
|
 |
MariaDB [db1]> ALTER TABLE tab CONVERT TO CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
|
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
- is blocked by
-
MDEV-21504 Collation: Create shared library for engines to use
- Closed