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

5 lines
193 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: shard
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);
2018-01-29 10:01:18 +00:00
SELECT anyHeavy(1) FROM remote('127.0.0.{2,3}', system.one);