mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
6 lines
282 B
MySQL
6 lines
282 B
MySQL
|
DROP TABLE IF EXISTS tab;
|
||
|
create table tab (A Int64) Engine=MergeTree order by tuple();
|
||
|
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;
|