2017-09-23 78 views
0

https://mariadb.com/kb/en/library/columnstore-create-table/不能在MariaDB的列存儲創建文本數據類型

說,這和它的工作原理..

DROP TABLE IF EXISTS `orders`; CREATE TABLE orders ( orderkey INTEGER, customer VARCHAR(45) ) ENGINE=ColumnStore;

此頁說,TEXT數據類型的支持。

https://mariadb.com/kb/en/library/columnstore-data-types/

列存儲支持以下數據類型:TEXT

但這並不工作..

DROP TABLE IF EXISTS `orders`; CREATE TABLE orders ( orderkey INTEGER, customer TEXT ) ENGINE=ColumnStore;

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.

我運行1.0.11。我明白了,像這樣:
wget https://downloads.mariadb.com/enterprise/htxx-hpee/mariadb-columnstore/1.0.11/ubuntu/dists/xenial/main/binary_amd64/mariadb-columnstore-1.0.11-1-xenial.x86_64.deb.tar.gz

我的安裝代碼是在這裏:

https://github.com/dgleba/vamp206a/blob/master/apps/mcs/mariadbcolumnstore-step1.sh#L84

我跑a2/24start.sh然後/apps/mcs/mariadbcolumnstore-step1.sh然後按照...step2.sh命令

任何人都可以擺脫任何輕文檔說TEXT被支持的事實,但我得到這個錯誤?

+0

你正在運行什麼版本? –

+0

我正在運行1.0.11。我明白這一點.. https://github.com/dgleba/vamp206a/blob/master/apps/mcs/mariadbcolumnstore-step1.sh#L84 –

回答

相關問題