Update 02131_mv_many_chunks_bug.sql

This commit is contained in:
Nikolai Kochetov 2021-12-20 15:58:55 +03:00 committed by GitHub
parent 96384fe4f3
commit 93c58b8554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ set max_bytes_before_external_group_by = 1000000000;
set group_by_two_level_threshold = 100;
set min_insert_block_size_rows = 100;
insert into t select number from numbers(10000);
insert into t select number from numbers(300);
select count() from (select y from t_mv group by y);
drop table if exists t;