mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
7 lines
245 B
MySQL
7 lines
245 B
MySQL
|
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;
|