mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test with monotonic integer cast.
This commit is contained in:
parent
7592b6e34a
commit
f676fed344
@ -0,0 +1 @@
|
||||
1
|
@ -0,0 +1,5 @@
|
||||
drop table if exists test.table;
|
||||
create table test.table (val Int32) engine = MergeTree order by val;
|
||||
insert into test.table values (-2), (0), (2);
|
||||
select count() from test.table where toUInt64(val) == 0;
|
||||
|
Loading…
Reference in New Issue
Block a user