ClickHouse/dbms/tests/queries/0_stateless/00337_shard_any_heavy.sql

3 lines
177 B
MySQL
Raw Normal View History

2016-06-26 13:21:58 +00:00
SELECT anyHeavy(x) FROM (SELECT intHash64(number) % 100 < 60 ? 999 : number AS x FROM system.numbers LIMIT 100000);
2017-01-25 13:21:35 +00:00
SELECT anyHeavy(1) FROM remote('127.0.0.{1,2}', system.one);