hudi-agent commented on code in PR #19157:
URL: https://github.com/apache/hudi/pull/19157#discussion_r3521209077
##########
hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/hive/HoodieCombineHiveInputFormat.java:
##########
@@ -559,7 +558,7 @@ private List<CombineFileSplit>
sampleSplits(List<CombineFileSplit> splits) {
retLists.add(split);
long splitgLength = split.getLength();
if (size + splitgLength >= targetSize) {
- LOG.info("Sample alias " + entry.getValue() + " using " + (i + 1) +
"splits");
+ LOG.info("Sample alias {} using {}splits", entry.getValue(), (i +
1));
Review Comment:
🤖 nit: there's a missing space before "splits" in the format string —
`"{}splits"` will produce output like `"3splits"`. Could you change it to
`"Sample alias {} using {} splits"`?
<sub><i>⚠️ AI-generated; verify before applying. React 👍/👎 to flag
quality.</i></sub>
--
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]