You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
5 lines
123 B
Plaintext
5 lines
123 B
Plaintext
USE tpch1;
|
|
drop table if exists foo;
|
|
create table foo (col1 int(11) null default null) engine=columnstore;
|
|
drop table foo;
|