You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-5464: Fixes of bugs from ASAN warnings, part one (#2792)
* 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
This commit is contained in:
5
tests/scripts/smoke.sql
Normal file
5
tests/scripts/smoke.sql
Normal file
@ -0,0 +1,5 @@
|
||||
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;
|
Reference in New Issue
Block a user