You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
Added more tests
This commit is contained in:
committed by
Leonid Fedorov
parent
0b0dd27fda
commit
2e61c9909b
@@ -6,8 +6,14 @@ CREATE TABLE qatablefloat (col float) engine=columnstore;
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
INSERT INTO qatablefloat VALUES (3.14);
|
||||
INSERT INTO qatablefloat VALUES (0);
|
||||
INSERT INTO qatablefloat VALUES (1.44);
|
||||
DELETE FROM qatablefloat WHERE col IS NULL;
|
||||
SELECT * FROM qatablefloat;
|
||||
col
|
||||
3.14
|
||||
0
|
||||
1.44
|
||||
DROP TABLE qatablefloat;
|
||||
DROP DATABASE `doubles_and_nulls`;
|
||||
|
Reference in New Issue
Block a user