Github user viirya commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18732#discussion_r142836611
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/python/ArrowEvalPythonExec.scala
 ---
    @@ -26,6 +26,25 @@ import org.apache.spark.sql.catalyst.expressions._
     import org.apache.spark.sql.execution.SparkPlan
     import org.apache.spark.sql.types.StructType
     
    +private class BatchIterator[T](iter: Iterator[T], batchSize: Int)
    +  extends Iterator[Iterator[T]] {
    +
    +  override def hasNext: Boolean = iter.hasNext
    +
    +  override def next(): Iterator[T] = {
    --- End diff --
    
    I didn't see the comment added?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to