User Tools

Verifying that MariaDB ColumnStore is correctly installed

To verify that MariaDB ColumnStore is correctly installed, connect to MariaDB and ask for ColumnStore version:

  SHOW STATUS LIKE 'columnstore_version';

If this query does not return any result, ColumnStore is not installed. Otherwise, it will return ColumnStore version.

Now you can verify that ColumnStore is able to accept writes:

  CREATE SCHEMA IF NOT EXISTS cs_test;
  USE cs_test;
  CREATE TABLE cst (i INT) ENGINE ColumnStore;
  INSERT INTO cst VALUES (1);

If the last statement does not return any error, ColumnStore is able to accept writes.


The first version of this document was created as part of the MariaDB ColumnStore Unofficial Documentation Project. It was not copied from another source.

You could leave a comment if you were logged in.

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also, you acknowledge that you have read and understand our Privacy Policy. If you do not agree, please leave the website.

More information