@@ -49,9 +49,6 @@ class SettingsChanges;
4949#define STORAGE_OBJECT_STORAGE_RELATED_SETTINGS (DECLARE, ALIAS ) \
5050 DECLARE (Bool, allow_dynamic_metadata_for_data_lakes, false , R"(
5151If enabled, indicates that metadata is taken from iceberg specification that is pulled from cloud before each query.
52- )" , 0 ) \
53- DECLARE (Bool, allow_experimental_delta_kernel_rs, true , R"(
54- If enabled, the engine would use delta-kernel-rs for DeltaLake metadata parsing
5552)" , 0 ) \
5653 DECLARE (Bool, delta_lake_read_schema_same_as_table_schema, false , R"(
5754Whether delta-lake read schema is the same as table schema.
@@ -69,6 +66,9 @@ If enabled, the engine would use the metadata file with the most recent last_upd
6966Get latest metadata path from version-hint.text file.
7067)" , 0 ) \
7168
69+ #define OBSOLETE_SETTINGS (M, ALIAS ) \
70+ MAKE_OBSOLETE (M, Bool, allow_experimental_delta_kernel_rs, true ) \
71+
7272// clang-format on
7373
7474STORAGE_OBJECT_STORAGE_SETTINGS_SUPPORTED_TYPES (StorageObjectStorageSettings, DECLARE_SETTING_TRAIT)
@@ -98,6 +98,7 @@ using StorageObjectStorageSettingsPtr = std::shared_ptr<StorageObjectStorageSett
9898
9999#define LIST_OF_STORAGE_OBJECT_STORAGE_SETTINGS (M, ALIAS ) \
100100 STORAGE_OBJECT_STORAGE_RELATED_SETTINGS (M, ALIAS) \
101+ OBSOLETE_SETTINGS (M, ALIAS) \
101102 LIST_OF_ALL_FORMAT_SETTINGS (M, ALIAS)
102103
103104}
0 commit comments