Skip to content

Commit

Permalink
Fix arrow UDTF support by switching to a new exception class
Browse files Browse the repository at this point in the history
  • Loading branch information
dtenedor committed Nov 7, 2023
1 parent 1b3fc2d commit 44a8438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/sql/tests/test_udtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2483,7 +2483,7 @@ def analyze(_):
def eval(self, _: Row):
self._total += 1
if self._total >= 4:
raise SkipRestOfInputTableException("StopIteration at self._total >= 4")
raise SkipRestOfInputTableException("Stop at self._total >= 4")

def terminate(self):
yield self._total,
Expand Down

0 comments on commit 44a8438

Please sign in to comment.