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
2 changes: 1 addition & 1 deletion src/Storages/ObjectStorage/StorageObjectStorageSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ StorageObjectStorageSource::ReaderHolder StorageObjectStorageSource::createReade

InputFormatPtr input_format;
if (context_->getSettingsRef()[Setting::use_parquet_metadata_cache] && use_native_reader_v3
&& (object_info->getFileFormat().value_or(configuration->getFormat()) == "Parquet")
&& (Poco::toLower(object_info->getFileFormat().value_or(configuration->getFormat())) == "parquet")
&& !object_info->getObjectMetadata()->etag.empty())
{
const std::optional<RelativePathWithMetadata> object_with_metadata = object_info->relative_path_with_metadata;
Expand Down
Loading