This commit is contained in:
Anton Popov 2024-09-19 21:33:18 +08:00 committed by GitHub
commit bdec69d0cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -861,6 +861,8 @@ class SettingsRandomizer:
"filesystem_prefetch_step_bytes": lambda: random.choice(
[0, "100Mi"]
), # 0 means 'auto'
"enable_filesystem_cache": lambda: random.randint(0, 1),
"enable_filesystem_cache_on_write_operations": lambda: random.randint(0, 1),
# "compile_expressions": lambda: random.randint(0, 1), - this setting has a bug: https://github.com/ClickHouse/ClickHouse/issues/51264
"compile_aggregate_expressions": lambda: random.randint(0, 1),
"compile_sort_description": lambda: random.randint(0, 1),