diff --git a/src/Core/Settings.cpp b/src/Core/Settings.cpp index 66859307674e..ad3a8c987518 100644 --- a/src/Core/Settings.cpp +++ b/src/Core/Settings.cpp @@ -7007,13 +7007,13 @@ Uses replicas from cluster_for_parallel_replicas. DECLARE(Bool, distributed_index_analysis_for_non_shared_merge_tree, false, R"( Enable distributed index analysis even for non SharedMergeTree (cloud only engine). )", 0) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'iceberg' )", BETA, allow_database_iceberg) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'unity' )", BETA, allow_database_unity_catalog) \ - DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, false, R"( + DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, true, R"( Allow experimental database engine DataLakeCatalog with catalog_type = 'glue' )", BETA, allow_database_glue_catalog) \ DECLARE_WITH_ALIAS(Bool, allow_experimental_analyzer, true, R"( diff --git a/src/Core/SettingsChangesHistory.cpp b/src/Core/SettingsChangesHistory.cpp index bfe9d06ea24e..ac6640171f9f 100644 --- a/src/Core/SettingsChangesHistory.cpp +++ b/src/Core/SettingsChangesHistory.cpp @@ -230,6 +230,13 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory() }); addSettingsChanges(settings_changes_history, "25.8.16.20001.altinityantalya", { + {"allow_experimental_database_iceberg", false, true, "Turned ON by default for Antalya."}, + {"allow_experimental_database_unity_catalog", false, true, "Turned ON by default for Antalya."}, + {"allow_experimental_database_glue_catalog", false, true, "Turned ON by default for Antalya."}, + {"allow_database_iceberg", false, true, "Turned ON by default for Antalya (alias)."}, + {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."}, + {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."}, + {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586 // {"iceberg_timezone_for_timestamptz", "UTC", "UTC", "New setting."}, // {"object_storage_remote_initiator", false, false, "New setting."},