mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
6 lines
282 B
SQL
6 lines
282 B
SQL
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;
|