ClickHouse/dbms/tests/queries/0_stateless/00653_monotonic_integer_cast.sql
2019-06-07 18:41:24 +03:00

6 lines
241 B
SQL

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