Skip to content

Commit

Permalink
Merge pull request #11837 from NVIDIA/branch-24.12
Browse files Browse the repository at this point in the history
[auto-merge] branch-24.12 to branch-25.02 [skip ci] [bot]
  • Loading branch information
nvauto authored Dec 8, 2024
2 parents 0fe162d + 3449c8a commit cb2668f
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -658,11 +658,15 @@ abstract class GpuBroadcastNestedLoopJoinExecBase(

localJoinType match {
case LeftOuter if spillableBuiltBatch.numRows == 0 =>
new EmptyOuterNestedLoopJoinIterator(streamedIter, spillableBuiltBatch.dataTypes,
true)
withResource(spillableBuiltBatch) { _ =>
new EmptyOuterNestedLoopJoinIterator(streamedIter, spillableBuiltBatch.dataTypes,
true)
}
case RightOuter if spillableBuiltBatch.numRows == 0 =>
new EmptyOuterNestedLoopJoinIterator(streamedIter, spillableBuiltBatch.dataTypes,
false)
withResource(spillableBuiltBatch) { _ =>
new EmptyOuterNestedLoopJoinIterator(streamedIter, spillableBuiltBatch.dataTypes,
false)
}
case _ =>
new CrossJoinIterator(
spillableBuiltBatch,
Expand Down

0 comments on commit cb2668f

Please sign in to comment.