Fix build

This commit is contained in:
Kruglov Pavel 2022-07-18 18:28:42 +02:00 committed by GitHub
parent b687b5406e
commit c7569d8b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ namespace SettingsChangesHistory
/// across all ClickHouse versions. It maps ClickHouse version to settings changes that were done
/// in this version. Settings changes is a vector of structs {setting_name, previous_value, new_value}
/// It's used to implement `compatibility` setting (see https://github.com/ClickHouse/ClickHouse/issues/35972)
std::map<ClickHouseVersion, SettingsChangesHistory::SettingsChanges> settings_changes_history =
static std::map<ClickHouseVersion, SettingsChangesHistory::SettingsChanges> settings_changes_history =
{
{"22.7", {{"cross_to_inner_join_rewrite", 1, 2, "Force rewrite comma join to inner"},
{"enable_positional_arguments", false, true, "Enable positional arguments feature by default"}}},