Merge pull request #73368 from Algunenano/fix_settings_24_12

Remove unused and confusing setting
This commit is contained in:
Raúl Marín 2024-12-16 19:14:59 +00:00 committed by GitHub
commit d0746292b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View File

@ -4996,7 +4996,6 @@ Prefer prefetched threadpool if all parts are on remote filesystem
Prefer prefetched threadpool if all parts are on local filesystem Prefer prefetched threadpool if all parts are on local filesystem
)", 0) \ )", 0) \
\ \
DECLARE(UInt64, object_storage_remove_recursive_file_limit, DEFAULT_REMOVE_SHARED_RECURSIVE_FILE_LIMIT, "Max number of files to store in memory during remove. Zero value means unlimited. Used to reduce memory usage.", 0) \
DECLARE(UInt64, prefetch_buffer_size, DBMS_DEFAULT_BUFFER_SIZE, R"( DECLARE(UInt64, prefetch_buffer_size, DBMS_DEFAULT_BUFFER_SIZE, R"(
The maximum size of the prefetch buffer to read from the filesystem. The maximum size of the prefetch buffer to read from the filesystem.
)", 0) \ )", 0) \

View File

@ -72,7 +72,6 @@ static std::initializer_list<std::pair<ClickHouseVersion, SettingsChangesHistory
{"max_size_to_preallocate_for_joins", 100'000'000, 1'000'000'000'000, "Enable optimisation for bigger tables."}, {"max_size_to_preallocate_for_joins", 100'000'000, 1'000'000'000'000, "Enable optimisation for bigger tables."},
{"max_bytes_ratio_before_external_group_by", 0., 0., "New setting."}, {"max_bytes_ratio_before_external_group_by", 0., 0., "New setting."},
{"optimize_extract_common_expressions", false, false, "Introduce setting to optimize WHERE, PREWHERE, ON, HAVING and QUALIFY expressions by extracting common expressions out from disjunction of conjunctions."}, {"optimize_extract_common_expressions", false, false, "Introduce setting to optimize WHERE, PREWHERE, ON, HAVING and QUALIFY expressions by extracting common expressions out from disjunction of conjunctions."},
{"object_storage_remove_recursive_file_limit", 0, 1000, "Added new setting to limit number of files stored in memory while removing from object storage. Zero value means unlimited."},
{"max_bytes_ratio_before_external_sort", 0., 0., "New setting."}, {"max_bytes_ratio_before_external_sort", 0., 0., "New setting."},
{"use_async_executor_for_materialized_views", false, false, "New setting."}, {"use_async_executor_for_materialized_views", false, false, "New setting."},
{"composed_data_type_output_format_mode", "default", "default", "New setting"}, {"composed_data_type_output_format_mode", "default", "default", "New setting"},