mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
13 lines
377 B
SQL
13 lines
377 B
SQL
-- Tags: distributed
|
|
|
|
DROP TABLE IF EXISTS d_numbers;
|
|
CREATE TABLE d_numbers (number UInt32) ENGINE = Distributed(test_cluster_two_shards, system, numbers, rand());
|
|
|
|
SELECT '100' AS number FROM d_numbers AS n WHERE n.number = 100 LIMIT 2;
|
|
|
|
SET distributed_product_mode = 'local';
|
|
|
|
SELECT '100' AS number FROM d_numbers AS n WHERE n.number = 100 LIMIT 2;
|
|
|
|
DROP TABLE d_numbers;
|