Skip to content

Commit 454b378

Browse files
committed
Fix after cherry-pick
1 parent e205c50 commit 454b378

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Storages/ObjectStorage/DataLakes/DataLakeConfiguration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class DataLakeConfiguration : public BaseStorageConfiguration, public std::enabl
128128
{
129129
_assertInitialized();
130130
return (*settings)[DataLakeStorageSetting::allow_dynamic_metadata_for_data_lakes]
131-
&& current_metadata->supportsExternalMetadataChange();
131+
&& current_metadata->supportsSchemaEvolution();
132132
}
133133

134134
bool supportsFileIterator() const override { return true; }

src/Storages/ObjectStorage/StorageObjectStorageSettings.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ using StorageObjectStorageSettingsPtr = std::shared_ptr<StorageObjectStorageSett
7979

8080
#define LIST_OF_STORAGE_OBJECT_STORAGE_SETTINGS(M, ALIAS) \
8181
STORAGE_OBJECT_STORAGE_RELATED_SETTINGS(M, ALIAS) \
82+
OBSOLETE_SETTINGS(M, ALIAS) \
8283
LIST_OF_ALL_FORMAT_SETTINGS(M, ALIAS)
8384

8485
}

0 commit comments

Comments
 (0)