Merge pull request #69205 from ClickHouse/fix-flaky-get-dictionary-test

Fix flaky 00157_cache_dictionary
This commit is contained in:
Nikita Mikhaylov 2024-09-03 19:26:42 +00:00 committed by GitHub
commit 592910d538
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ SAMPLE BY intHash32(UserID)
SETTINGS storage_policy = 'default'; SETTINGS storage_policy = 'default';
INSERT INTO test.hits_1m SELECT * FROM test.hits LIMIT 1000000 INSERT INTO test.hits_1m SELECT * FROM test.hits LIMIT 1000000
SETTINGS min_insert_block_size_rows = 0, min_insert_block_size_bytes = 0, max_block_size = 8192, max_insert_threads = 1, max_threads = 1; SETTINGS min_insert_block_size_rows = 0, min_insert_block_size_bytes = 0, max_block_size = 8192, max_insert_threads = 1, max_threads = 1, max_parallel_replicas=1;
CREATE DATABASE IF NOT EXISTS db_dict; CREATE DATABASE IF NOT EXISTS db_dict;
DROP DICTIONARY IF EXISTS db_dict.cache_hits; DROP DICTIONARY IF EXISTS db_dict.cache_hits;