Skip to content

Commit 4731c6c

Browse files
Enmkzvonand
authored andcommitted
Merge pull request #1504 from Altinity/fixes/26.1-antalya/enabled_experimental_datalake_catalogues
26.1 Antalya - Enabled experimental datalake catalogues by-default
1 parent 58b280f commit 4731c6c

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

src/Core/Settings.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7157,17 +7157,17 @@ Uses replicas from cluster_for_parallel_replicas.
71577157
DECLARE(Bool, distributed_index_analysis_for_non_shared_merge_tree, false, R"(
71587158
Enable distributed index analysis even for non SharedMergeTree (cloud only engine).
71597159
)", 0) \
7160-
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, false, R"(
7160+
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_iceberg, true, R"(
71617161
Allow experimental database engine DataLakeCatalog with catalog_type = 'iceberg'
71627162
71637163
Cloud default value: `1`.
71647164
)", BETA, allow_database_iceberg) \
7165-
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, false, R"(
7165+
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_unity_catalog, true, R"(
71667166
Allow experimental database engine DataLakeCatalog with catalog_type = 'unity'
71677167
71687168
Cloud default value: `1`.
71697169
)", BETA, allow_database_unity_catalog) \
7170-
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, false, R"(
7170+
DECLARE_WITH_ALIAS(Bool, allow_experimental_database_glue_catalog, true, R"(
71717171
Allow experimental database engine DataLakeCatalog with catalog_type = 'glue'
71727172
71737173
Cloud default value: `1`.

src/Core/SettingsChangesHistory.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,14 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory()
312312
// {"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."},
313313
// {"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."},
314314
// {"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586
315+
{"allow_experimental_database_iceberg", false, true, "Turned ON by default for Antalya."},
316+
{"allow_experimental_database_unity_catalog", false, true, "Turned ON by default for Antalya."},
317+
{"allow_experimental_database_glue_catalog", false, true, "Turned ON by default for Antalya."},
318+
{"allow_database_iceberg", false, true, "Turned ON by default for Antalya (alias)."},
319+
{"allow_database_unity_catalog", false, true, "Turned ON by default for Antalya (alias)."},
320+
{"allow_database_glue_catalog", false, true, "Turned ON by default for Antalya (alias)."},
321+
322+
{"input_format_parquet_use_metadata_cache", true, true, "New setting, turned ON by default"}, // https://github.com/Altinity/ClickHouse/pull/586
315323
// {"iceberg_timezone_for_timestamptz", "UTC", "UTC", "New setting."},
316324
// {"object_storage_remote_initiator", false, false, "New setting."},
317325
{"allow_experimental_iceberg_read_optimization", true, true, "New setting."},

0 commit comments

Comments
 (0)