mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
* Fixes of bugs from ASAN warnings, part one * MQC as static library, with nifty counter for global map and mutex * Switch clang to 16 * link messageqcpp to execplan
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;
|