mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
6 lines
173 B
SQL
6 lines
173 B
SQL
DROP TABLE IF EXISTS smoke_table;
|
|
CREATE TABLE smoke_table(a int) ENGINE COLUMNSTORE;
|
|
INSERT INTO smoke_table VALUES(42);
|
|
SELECT * FROM smoke_table;
|
|
DROP TABLE smoke_table;
|