Skip to content

Commit

Permalink
[bugfix](hive)Remove redundant split operations (#40683)
Browse files Browse the repository at this point in the history
## Proposed changes

In explain, we don't need to get all the splits.
  • Loading branch information
wuwenchi authored Sep 18, 2024
1 parent 5491960 commit b39b24a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public String getNodeExplainString(String prefix, TExplainLevel detailLevel) {
output.append(prefix);
if (isBatchMode()) {
output.append("(approximate)");
splitAssignment.stop();
}
output.append("inputSplitNum=").append(selectedSplitNum).append(", totalFileSize=")
.append(totalFileSize).append(", scanRanges=").append(scanRangeLocations.size()).append("\n");
Expand Down

0 comments on commit b39b24a

Please sign in to comment.