Skip to content

Commit 0e3eb43

Browse files
committed
fix build issue
1 parent d11a63d commit 0e3eb43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Storages/ObjectStorage/DataLakes/Iceberg/IcebergMetadata.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ static CompressionMethod getCompressionMethodFromMetadataFile(const String & pat
293293
return compression_method;
294294
}
295295

296-
static MetadatafileWithInfo getMetadataFileAndVersion(const std::string & path)
296+
static MetadataFileWithInfo getMetadataFileAndVersion(const std::string & path)
297297
{
298298
String file_name(path.begin() + path.find_last_of('/') + 1, path.end());
299299
String version_str;
@@ -414,7 +414,7 @@ static MetadataFileWithInfo getLatestMetadataFileAndVersion(
414414
return {latest_metadata_file_info.version, latest_metadata_file_info.path, getCompressionMethodFromMetadataFile(latest_metadata_file_info.path)};
415415
}
416416

417-
static std::pair<Int32, String> getLatestOrExplicitMetadataFileAndVersion(
417+
static MetadataFileWithInfo getLatestOrExplicitMetadataFileAndVersion(
418418
const ObjectStoragePtr & object_storage,
419419
const StorageObjectStorage::Configuration & configuration,
420420
const ContextPtr & local_context,

0 commit comments

Comments
 (0)