ClickHouse/tests/queries/0_stateless/01920_async_drain_connections.sql
2021-07-19 21:53:29 +08:00

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;