Merge pull request #68737 from ClickHouse/fix_flaky_test_989

Fix flaky test 00989_parallel_parts_loading
This commit is contained in:
alesapin 2024-08-23 09:33:21 +00:00 committed by GitHub
commit 20c62dc978
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,5 @@
-- Tags: no-random-settings, no-random-merge-tree-settings
-- small number of insert threads can make insert terribly slow, especially with some build like msan
DROP TABLE IF EXISTS mt;
CREATE TABLE mt (x UInt64) ENGINE = MergeTree ORDER BY x SETTINGS parts_to_delay_insert = 100000, parts_to_throw_insert = 100000;