Skip to content
Open
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 @@ -7267,17 +7267,17 @@ but makes distributed index analysis less efficient if large tables are used in
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'

Cloud default value: `1`.
)", 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'

Cloud default value: `1`.
)", 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'

Cloud default value: `1`.
Expand Down
Loading