vinothchandar commented on code in PR #13489: URL: https://github.com/apache/hudi/pull/13489#discussion_r2205976058
########## hudi-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadata.java: ########## @@ -202,11 +220,17 @@ public List<String> getPartitionPathWithPathPrefixes(List<String> relativePathPr } @Override - public HoodieData<HoodieRecord<HoodieMetadataPayload>> getRecordsByKeyPrefixes(List<String> keyPrefixes, + public HoodieData<HoodieRecord<HoodieMetadataPayload>> getRecordsByKeyPrefixes(HoodieData<String> keyPrefixes, String partitionName, - boolean shouldLoadInMemory) { + boolean shouldLoadInMemory, + Option<SerializableFunctionUnchecked<String, String>> keyEncodingFn) { + ValidationUtils.checkState(keyPrefixes instanceof HoodieListData, "getRecordsByKeyPrefixes only support HoodieListData at the moment"); Review Comment: lets file a follow on for Hudi 1.2. -- 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: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org