mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Added test.
This commit is contained in:
parent
54f50745ec
commit
b16936ba9d
@ -0,0 +1 @@
|
||||
49999995000000
|
7
tests/queries/0_stateless/001283_strict_resize_bug.sql
Normal file
7
tests/queries/0_stateless/001283_strict_resize_bug.sql
Normal file
@ -0,0 +1,7 @@
|
||||
drop table if exists num_10m;
|
||||
create table num_10m (number UInt64) engine = MergeTree order by tuple();
|
||||
insert into num_10m select * from numbers(10000000);
|
||||
|
||||
select * from (select sum(number) from num_10m union all select sum(number) from num_10m) limit 1 settings max_block_size = 1024;
|
||||
|
||||
drop table if exists num_1m;
|
Loading…
Reference in New Issue
Block a user