Skip to content

Commit

Permalink
Revert "Fix a minor potential issue when rebatching for GpuArrowEvalP…
Browse files Browse the repository at this point in the history
…ythonExec (#5995)" (#7006)

This reverts commit 4a313e7.

Signed-off-by: Bobby Wang <wbo4958@gmail.com>
  • Loading branch information
wbo4958 authored Nov 4, 2022
1 parent 6487965 commit 02f87d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class RebatchingRoundoffIterator(

val rc: Long = combined.numRows()

if (rc <= targetRoundoff) {
if (rc % targetRoundoff == 0 || rc < targetRoundoff) {
return combined
}

Expand Down

0 comments on commit 02f87d2

Please sign in to comment.