Test 03222_parallel_replicas_min_marks_to_read_overflow

This commit is contained in:
Igor Nikonov 2024-08-13 20:55:20 +00:00
parent 5339717c11
commit 62e45a4c8f
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
100 100
101 101
102 102
103 103
104 104
105 105
106 106
107 107
108 108
109 109

View File

@ -0,0 +1,15 @@
DROP TABLE IF EXISTS test__fuzz_22 SYNC;
CREATE TABLE test__fuzz_22 (k Float32, v String) ENGINE = ReplicatedMergeTree('/clickhouse/03222/{database}/test__fuzz_22', 'r1') ORDER BY k SETTINGS index_granularity = 1;
INSERT INTO test__fuzz_22 SELECT number, toString(number) FROM numbers(10_000);
SET allow_experimental_parallel_reading_from_replicas = 2, max_parallel_replicas = 3, cluster_for_parallel_replicas='test_cluster_one_shard_three_replicas_localhost';
SELECT k, v
FROM test__fuzz_22
ORDER BY k
LIMIT 100, 10
SETTINGS merge_tree_min_rows_for_concurrent_read = 9223372036854775806;
DROP TABLE test__fuzz_22 SYNC;