1
0
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:
Alexander Presnyakov
2024-07-30 13:04:29 +00:00
committed by Leonid Fedorov
parent 0b0dd27fda
commit 2e61c9909b
4 changed files with 245 additions and 24 deletions

View File

@@ -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`;