We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b3e0a commit 196813aCopy full SHA for 196813a
src/Storages/ObjectStorage/DataLakes/DeltaLakeMetadata.h
@@ -57,8 +57,10 @@ class DeltaLakeMetadata final : public IDataLakeMetadata
57
{
58
#if USE_DELTA_KERNEL_RS
59
auto configuration_ptr = configuration.lock();
60
- const auto & settings_ref = configuration_ptr->getSettingsRef();
61
- if (settings_ref[StorageObjectStorageSetting::allow_experimental_delta_kernel_rs])
+ const auto & query_settings_ref = local_context->getSettingsRef();
+
62
+ bool enable_delta_kernel = query_settings_ref[Setting::allow_experimental_delta_kernel_rs];
63
+ if (enable_delta_kernel)
64
return std::make_unique<DeltaLakeMetadataDeltaKernel>(
65
object_storage,
66
configuration,
0 commit comments