ClickHouse/dbms/tests/queries/0_stateless/00612_shard_count.sql
2019-10-29 22:26:43 +08:00

10 lines
304 B
SQL

DROP TABLE IF EXISTS test.count;
CREATE TABLE test.count (x UInt64) ENGINE = MergeTree ORDER BY tuple();
INSERT INTO test.count SELECT * FROM numbers(1234567);
SELECT count() FROM remote('127.0.0.{1,2}', test.count);
SELECT count() / 2 FROM remote('127.0.0.{1,2}', test.count);
DROP TABLE test.count;