Davis-Zhang-Onehouse commented on code in PR #13622: URL: https://github.com/apache/hudi/pull/13622#discussion_r2234174186
########## hudi-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadata.java: ########## @@ -831,49 +828,23 @@ public HoodiePairData<String, Set<String>> getSecondaryIndexRecords(HoodieData<S } } - private HoodiePairData<String, Set<String>> getSecondaryIndexRecordsV1(HoodieData<String> keys, String partitionName) { + private HoodiePairData<String, String> getSecondaryIndexRecordsV1(HoodieData<String> keys, String partitionName) { if (keys.isEmpty()) { return HoodieListPairData.eager(Collections.emptyList()); } - Map<String, Set<String>> res = getRecordsByKeyPrefixes(keys, partitionName, false, SecondaryIndexKeyUtils::escapeSpecialChars) - .map(record -> { - if (!record.getData().isDeleted()) { Review Comment: nice catch, it is fixed now -- 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