Update 01605_adaptive_granularity_block_borders to avoid using mmap

This commit is contained in:
Azat Khuzhin 2021-04-17 10:24:32 +03:00
parent 6064f3ef1d
commit 1b367ee71d

View File

@ -23,6 +23,6 @@ SELECT marks FROM system.parts WHERE table = 'adaptive_table' and database=curre
-- If we have computed granularity incorrectly than we will exceed this limit.
SET max_memory_usage='30M';
SELECT max(length(value)) FROM adaptive_table;
SELECT max(length(value)) FROM adaptive_table SETTINGS min_bytes_to_use_mmap_io=0;
DROP TABLE IF EXISTS adaptive_table;