Update 01781_token_extractor_buffer_overflow.sql

This commit is contained in:
alexey-milovidov 2021-04-01 07:16:23 +03:00 committed by GitHub
parent 269ccabc0c
commit d6b81464dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
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;