mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
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:
commit
d187249e74
@ -0,0 +1,2 @@
|
|||||||
|
0
|
||||||
|
0
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user