Skip to content

Commit

Permalink
Merge pull request ClickHouse#69205 from ClickHouse/fix-flaky-get-dic…
Browse files Browse the repository at this point in the history
…tionary-test

Fix flaky 00157_cache_dictionary
  • Loading branch information
nikitamikhaylov authored Sep 3, 2024
2 parents 17baa4f + 52b9f47 commit 592910d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/queries/1_stateful/00157_cache_dictionary.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SAMPLE BY intHash32(UserID)
SETTINGS storage_policy = 'default';

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;
DROP DICTIONARY IF EXISTS db_dict.cache_hits;
Expand Down

0 comments on commit 592910d

Please sign in to comment.