codope commented on code in PR #11146:
URL: https://github.com/apache/hudi/pull/11146#discussion_r1618692490
##########
hudi-common/src/main/java/org/apache/hudi/metadata/HoodieTableMetadata.java:
##########
@@ -112,6 +113,14 @@ static boolean isMetadataTable(String basePath) {
return basePath.endsWith(HoodieTableMetaClient.METADATA_TABLE_FOLDER_PATH);
}
+ static boolean isMetadataTableSecondaryIndexPartition(String basePath,
Option<String> partitionName) {
+ if (!isMetadataTable(basePath) || !partitionName.isPresent()) {
Review Comment:
removed.. this method is not required after i added
`MetadataPartitionType#fromPartitionPath`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]