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 @@ -6821,13 +6821,13 @@ Allow to create database with Engine=MaterializedPostgreSQL(...).
DECLARE(Bool, allow_experimental_query_deduplication, false, R"(
Experimental data deduplication for SELECT queries based on part UUIDs
)", EXPERIMENTAL) \
DECLARE(Bool, allow_experimental_database_iceberg, false, R"(
DECLARE(Bool, allow_experimental_database_iceberg, true, R"(
Allow experimental database engine DataLakeCatalog with catalog_type = 'iceberg'
)", EXPERIMENTAL) \
DECLARE(Bool, allow_experimental_database_unity_catalog, false, R"(
DECLARE(Bool, allow_experimental_database_unity_catalog, true, R"(
Allow experimental database engine DataLakeCatalog with catalog_type = 'unity'
)", EXPERIMENTAL) \
DECLARE(Bool, allow_experimental_database_glue_catalog, false, R"(
DECLARE(Bool, allow_experimental_database_glue_catalog, true, R"(
Allow experimental database engine DataLakeCatalog with catalog_type = 'glue'
)", EXPERIMENTAL) \
DECLARE(Bool, allow_experimental_database_hms_catalog, false, R"(
Expand Down
3 changes: 3 additions & 0 deletions src/Core/SettingsChangesHistory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory()

addSettingsChanges(settings_changes_history, "25.6.5.2000",
{
{"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"},
{"output_format_parquet_enum_as_byte_array", true, true, "Enable writing Enum as byte array in Parquet by default"},
});
addSettingsChanges(settings_changes_history, "25.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@

-- However, some settings in the experimental tier are meant to control another experimental feature, and then they can be enabled as long as the feature itself is disabled.
-- These are in the exceptions list inside NOT IN.
SELECT name, value FROM system.settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN ('throw_on_unsupported_query_inside_transaction');
SELECT name, value FROM system.settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN (
'throw_on_unsupported_query_inside_transaction',
-- turned ON for Altinity Antalya builds specifically
'allow_experimental_database_iceberg',
'allow_experimental_database_unity_catalog',
'allow_experimental_database_glue_catalog'
);
SELECT name, value FROM system.merge_tree_settings WHERE tier = 'Experimental' AND type = 'Bool' AND value != '0' AND name NOT IN ('remove_rolled_back_parts_immediately');
Loading