1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Fixes of bugs from ASAN warnings, part one (#2796)

This commit is contained in:
Leonid Fedorov
2023-03-30 18:29:04 +03:00
committed by GitHub
parent a1d20d82d5
commit 2f153184c3
71 changed files with 591 additions and 2038 deletions

5
tests/scripts/smoke.sql Normal file
View 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;