deniskuzZ commented on code in PR #5409: URL: https://github.com/apache/hive/pull/5409#discussion_r1812742511
########## ql/src/java/org/apache/hadoop/hive/ql/exec/tez/CustomPartitionVertex.java: ########## @@ -546,14 +534,13 @@ private Multimap<Integer, InputSplit> getBucketSplitMapForPath(String inputName, Multimap<Integer, InputSplit> bucketToSplitMap = ArrayListMultimap.create(); boolean fallback = false; - for (Map.Entry<String, Set<FileSplit>> entry : pathFileSplitsMap.entrySet()) { + for (Map.Entry<Integer, Set<HiveInputSplit>> entry : bucketSplitsMap.entrySet()) { // Extract the buckedID from pathFilesMap, this is more accurate method, // however. it may not work in certain cases where buckets are named // after files used while loading data. In such case, fallback to old // potential inaccurate method. // The accepted file names are such as 000000_0, 000001_0_copy_1. Review Comment: could we please cleanup the comment since we no longer operate on fileNames -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org