Comments - CHARACTER SET problem in ColumnStore?

7 years, 6 months ago David Thompson

Column level character set settings and the collate option are not currently supported. Instance level (see UTF8 section https://mariadb.com/kb/en/mariadb/mariadb-columnstore-system-usage/) or table level, for example:

CREATE TABLE table1 ( name char(3) NOT NULL DEFAULT '')default CHARACTER SET latin1 engine=columnstore;

An improvement has been filed: https://jira.mariadb.org/browse/MCOL-337

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.