You've already forked mariadb-columnstore-engine
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:
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