1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +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

@ -12,6 +12,9 @@ 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;