mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Added test.
This commit is contained in:
parent
ccf2ceb876
commit
f9c4721ba2
6
tests/queries/0_stateless/01318_parallel_final_stuck.sql
Normal file
6
tests/queries/0_stateless/01318_parallel_final_stuck.sql
Normal file
@ -0,0 +1,6 @@
|
||||
drop table if exists final_bug;
|
||||
create table final_bug (x UInt64, y UInt8) engine = ReplacingMergeTree(y) order by x settings index_granularity = 8;
|
||||
insert into final_bug select number % 10, 1 from numbers(1000);
|
||||
insert into final_bug select number % 10, 1 from numbers(1000);
|
||||
select x from final_bug final order by x settings max_threads=2, max_final_threads=2, max_block_size=8 format Null;
|
||||
drop table if exists final_bug;
|
Loading…
Reference in New Issue
Block a user