mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
319 B
SQL
6 lines
319 B
SQL
DROP TABLE IF EXISTS tab;
|
|
create table tab (A Int64) Engine=MergeTree order by tuple() SETTINGS min_bytes_for_wide_part = 0;
|
|
insert into tab select cityHash64(number) from numbers(1000);
|
|
select sum(sleep(0.1)) from tab settings max_block_size = 1, max_execution_time=1; -- { serverError 159 }
|
|
DROP TABLE IF EXISTS tab;
|