mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
added test [#CLICKHOUSE-3237]
This commit is contained in:
parent
850bc9f19d
commit
f8bf45a5ec
@ -0,0 +1,5 @@
|
||||
drop table if exists one_table;
|
||||
create table one_table (date Date, one UInt64) engine = MergeTree(date, (date, one), 8192);
|
||||
insert into one_table select today(), toUInt64(1) from system.numbers limit 100000;
|
||||
SET preferred_block_size_bytes = 8192;
|
||||
select isNull(one) from one_table where isNull(one);
|
Loading…
Reference in New Issue
Block a user