mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
12 lines
328 B
SQL
12 lines
328 B
SQL
-- Tags: shard
|
|
|
|
DROP TABLE IF EXISTS count;
|
|
|
|
CREATE TABLE count (x UInt64) ENGINE = MergeTree ORDER BY tuple();
|
|
INSERT INTO count SELECT * FROM numbers(1234567);
|
|
|
|
SELECT count() FROM remote('127.0.0.{1,2}', currentDatabase(), count);
|
|
SELECT count() / 2 FROM remote('127.0.0.{1,2}', currentDatabase(), count);
|
|
|
|
DROP TABLE count;
|