mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Added test.
This commit is contained in:
parent
962a89843c
commit
85ed639f8e
@ -0,0 +1,4 @@
|
||||
84
|
||||
168
|
||||
210
|
||||
420
|
10
tests/queries/0_stateless/01533_sum_if_nullable_bug.sql
Normal file
10
tests/queries/0_stateless/01533_sum_if_nullable_bug.sql
Normal file
@ -0,0 +1,10 @@
|
||||
drop table if exists T;
|
||||
create table T(a Nullable(Int64)) engine = Memory();
|
||||
insert into T values (1), (2), (3), (4), (5);
|
||||
select sumIf(42, (a % 2) = 0) from T;
|
||||
select sumIf(42, (a % 2) = 0) from remote('127.0.0.{1,2}', currentDatabase(), T);
|
||||
select sumIf(42, toNullable(1)) from T;
|
||||
select sumIf(42, toNullable(1)) from remote('127.0.0.{1,2}', currentDatabase(), T);
|
||||
-- select sumIf(42, toNullable(toInt64(1))) from T;
|
||||
-- select sumIf(42, toNullable(toInt64(1))) from remote('127.0.0.{1,2}', currentDatabase(), T);
|
||||
drop table if exists T;
|
Loading…
Reference in New Issue
Block a user