mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
7 lines
245 B
SQL
7 lines
245 B
SQL
drop table if exists t;
|
|
|
|
create table t (number UInt64) engine = Distributed(test_cluster_two_shards, system, numbers);
|
|
select * from t where number = 0 limit 2 settings sleep_in_receive_cancel_ms = 10000, max_execution_time = 5;
|
|
|
|
drop table t;
|