Merge pull request #67605 from ClickHouse/fix_01605_adaptive_granularity_block_borders

Fix 01605_adaptive_granularity_block_borders
This commit is contained in:
Nikita Taranov 2024-08-02 16:27:44 +00:00 committed by GitHub
commit 8735076fbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
-- Tags: no-random-merge-tree-settings, no-tsan, no-debug, no-object-storage
-- Tags: no-random-merge-tree-settings, no-random-settings, no-tsan, no-debug, no-object-storage, long
-- no-tsan: too slow
-- no-object-storage: for remote tables we use thread pool even when reading with one stream, so memory consumption is higher
@ -16,7 +16,7 @@ CREATE TABLE adaptive_table(
value String
) ENGINE MergeTree()
ORDER BY key
SETTINGS index_granularity_bytes=1048576,
SETTINGS index_granularity_bytes = 1048576,
min_bytes_for_wide_part = 0,
min_rows_for_wide_part = 0,
enable_vertical_merge_algorithm = 0;