This commit is contained in:
vdimir 2024-09-06 14:35:33 +00:00
parent cf9200f1d0
commit 056c7af356
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -27,6 +27,9 @@ def test_settings_randomization(started_cluster):
).strip() ).strip()
) )
# setting set in test config is not overriden
assert q("value", "max_block_size") == 59999 assert q("value", "max_block_size") == 59999
# some setting is randomized
assert q("changed", "max_joined_block_size_rows") == 1 assert q("changed", "max_joined_block_size_rows") == 1
assert 8000 <= q("value", "max_joined_block_size_rows") <= 100000 assert 8000 <= q("value", "max_joined_block_size_rows") <= 100000