Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1104,17 +1104,11 @@ public Range toRange()
@Override
public int compareTo(RangeView that)
{
int compare;
compare = compareLowBound(that);
Comment thread
tangjiangling marked this conversation as resolved.
int compare = compareLowBound(that);
Comment thread
tangjiangling marked this conversation as resolved.
if (compare != 0) {
return compare;
}
compare = compareHighBound(that);
if (compare != 0) {
return compare;
}

return 0;
return compareHighBound(that);
}

private int compareLowBound(RangeView that)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private boolean evaluateCurrentDynamicFilter()
boolean partitionMatches = partitionMatches(partitionColumns, currentPredicate, hivePartition);
if (!partitionMatches || filterIsComplete) {
// Store the result to avoid re-evaluating the filter for each subsequent split
this.finalResult = (Boolean) partitionMatches;
this.finalResult = partitionMatches;
}
return partitionMatches;
}
Expand Down