mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Update clickhouse-test
This commit is contained in:
parent
2aa3d32887
commit
5af0537f2c
@ -371,7 +371,7 @@ class SettingsRandomizer:
|
||||
"group_by_two_level_threshold_bytes": lambda: 1 if random.random() < 0.1 else 2 ** 60 if random.random() < 0.11 else 50000000,
|
||||
"distributed_aggregation_memory_efficient": lambda: random.randint(0, 1),
|
||||
"fsync_metadata": lambda: random.randint(0, 1),
|
||||
"priority": lambda: int(abs(random.gauss(0, 2))),
|
||||
"priority": lambda: min(3, int(abs(random.gauss(0, 2)))),
|
||||
"output_format_parallel_formatting": lambda: random.randint(0, 1),
|
||||
"input_format_parallel_parsing": lambda: random.randint(0, 1),
|
||||
"min_chunk_bytes_for_parallel_parsing": lambda: max(1024, int(random.gauss(10 * 1024 * 1024, 5 * 1000 * 1000))),
|
||||
|
Loading…
Reference in New Issue
Block a user