1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00
Files
mariadb-columnstore-engine/mtr/csinternal/devregression/r/mcs7235_regression_MCOL-657.result
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02:00

15 lines
328 B
Plaintext

USE tpch1;
create table if not exists MCOL657 (a int, b int) engine=columnstore;
insert into MCOL657 values (1,1), (2,2), (3,4), (NULL, NULL), (NULL, 2), (3, NULL);
select * from MCOL657 where a = b OR (a IS NULL AND b IS NULL);
a b
1 1
2 2
NULL NULL
select * from MCOL657 where a<=>b;
a b
1 1
2 2
NULL NULL
drop table MCOL657;