From abab3ba09fddc0c9a4e80f4b6789999606102fad Mon Sep 17 00:00:00 2001 From: alesapin Date: Mon, 12 Apr 2021 11:07:28 +0300 Subject: [PATCH] Fix lost comment --- tests/integration/test_limited_replicated_fetches/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/test_limited_replicated_fetches/test.py b/tests/integration/test_limited_replicated_fetches/test.py index 30673b198f6..7b0c7aed15d 100644 --- a/tests/integration/test_limited_replicated_fetches/test.py +++ b/tests/integration/test_limited_replicated_fetches/test.py @@ -31,6 +31,9 @@ def get_random_string(length): def test_limited_fetches(started_cluster): + """ + Test checks that that we utilize all available threads for fetches + """ node1.query("CREATE TABLE t (key UInt64, data String) ENGINE = ReplicatedMergeTree('/clickhouse/test/t', '1') ORDER BY tuple() PARTITION BY key") node2.query("CREATE TABLE t (key UInt64, data String) ENGINE = ReplicatedMergeTree('/clickhouse/test/t', '2') ORDER BY tuple() PARTITION BY key")