Compare commits

..

2 Commits

Author SHA1 Message Date
Igor Nikonov
fd35a5ab9b Fix test_parallel_replicas_all_marks_read 2024-11-20 22:57:09 +00:00
Igor Nikonov
c0195f5482 Update settings history 2024-11-20 22:56:36 +00:00
2 changed files with 2 additions and 1 deletions

View File

@ -90,6 +90,7 @@ static std::initializer_list<std::pair<ClickHouseVersion, SettingsChangesHistory
{"s3_skip_empty_files", false, true, "We hope it will provide better UX"},
{"filesystem_cache_boundary_alignment", 0, 0, "New setting"},
{"push_external_roles_in_interserver_queries", false, false, "New setting."},
{"parallel_replicas_skip_index_analysis_on_workers", false, true, "Skip index analysis on workers. Effective only with enabled parallel_replicas_local_plan"},
}
},
{"24.10",

View File

@ -71,7 +71,7 @@ def _get_result_with_parallel_replicas(
"cluster_for_parallel_replicas": f"{cluster_name}",
"parallel_replicas_mark_segment_size": parallel_replicas_mark_segment_size,
"query_id": query_id,
"parallel_replicas_skip_index_analysis_on_workers": True,
"parallel_replicas_skip_index_analysis_on_workers": False,
},
)