mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
6 lines
241 B
SQL
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;
|