Merge branch 'fix-buffer-overflow-in-token-extractor' of github.com:yandex/ClickHouse into fix-buffer-overflow-in-token-extractor

This commit is contained in:
Alexey Milovidov 2021-04-01 10:15:12 +03:00
commit d187249e74
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
SET max_block_size = 1, min_insert_block_size_rows = 0, min_insert_block_size_bytes = 0, max_threads = 20, max_rows_to_read = 16; SET max_block_size = 1, min_insert_block_size_rows = 0, min_insert_block_size_bytes = 0, max_threads = 20;
DROP TABLE IF EXISTS bloom_filter; DROP TABLE IF EXISTS bloom_filter;
CREATE TABLE bloom_filter (`id` UInt64, `s` String, INDEX tok_bf (s, lower(s)) TYPE tokenbf_v1(512, 3, 0) GRANULARITY 1) ENGINE = MergeTree ORDER BY id SETTINGS index_granularity = 8; CREATE TABLE bloom_filter (`id` UInt64, `s` String, INDEX tok_bf (s, lower(s)) TYPE tokenbf_v1(512, 3, 0) GRANULARITY 1) ENGINE = MergeTree ORDER BY id SETTINGS index_granularity = 8;