ClickHouse/dbms/tests/queries/0_stateless/00653_monotonic_integer_cast.sql

5 lines
193 B
MySQL
Raw Normal View History

drop table if exists `table`;
create table `table` (val Int32) engine = MergeTree order by val;
insert into `table` values (-2), (0), (2);
select count() from `table` where toUInt64(val) == 0;