Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Core/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"(
Expand Down
7 changes: 7 additions & 0 deletions src/Core/SettingsChangesHistory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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."},
Expand Down
Loading