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
fix(mcol-4499): Correct handling of LIKE/NOT LIKE NULL
This commit is contained in:
committed by
Leonid Fedorov
parent
3bb2496ca1
commit
0b0dd27fda
19
mysql-test/columnstore/bugfixes/mcol-4499-float-null.test
Normal file
19
mysql-test/columnstore/bugfixes/mcol-4499-float-null.test
Normal file
@ -0,0 +1,19 @@
|
||||
-- source ../include/have_columnstore.inc
|
||||
|
||||
--disable_warnings
|
||||
DROP DATABASE IF EXISTS `doubles_and_nulls`;
|
||||
CREATE DATABASE `doubles_and_nulls`;
|
||||
USE `doubles_and_nulls`;
|
||||
|
||||
DROP TABLE IF EXISTS qatablefloat;
|
||||
--enable_warnings
|
||||
|
||||
CREATE TABLE qatablefloat (col float) engine=columnstore;
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
INSERT INTO qatablefloat VALUES (null);
|
||||
DELETE FROM qatablefloat WHERE col IS NULL;
|
||||
SELECT * FROM qatablefloat;
|
||||
|
||||
DROP TABLE qatablefloat;
|
||||
DROP DATABASE `doubles_and_nulls`;
|
Reference in New Issue
Block a user