increase block size in order to speed up test

This commit is contained in:
Sema Checherinda 2023-02-06 12:06:06 +01:00 committed by GitHub
parent a356c64d9c
commit dfb961db72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,8 @@ INSERT INTO nested SELECT number, number % 2, range(number % 10) FROM system.num
ALTER TABLE nested ADD COLUMN n.b Array(UInt64);
SELECT DISTINCT n.b FROM nested PREWHERE filter;
SELECT DISTINCT n.b FROM nested PREWHERE filter SETTINGS max_block_size = 10;
SELECT DISTINCT n.b FROM nested PREWHERE filter SETTINGS max_block_size = 123;
SELECT DISTINCT n.b FROM nested PREWHERE filter SETTINGS max_block_size = 1234;
ALTER TABLE nested ADD COLUMN n.c Array(UInt64) DEFAULT arrayMap(x -> x * 2, n.a);
SELECT DISTINCT n.c FROM nested PREWHERE filter;