HyukjinKwon commented on a change in pull request #23787: [SPARK-26830][SQL][R] Vectorized R dapply() implementation URL: https://github.com/apache/spark/pull/23787#discussion_r259668509
########## File path: sql/core/src/main/scala/org/apache/spark/sql/execution/python/ArrowEvalPythonExec.scala ########## @@ -34,7 +34,7 @@ import org.apache.spark.sql.types.StructType * This is necessary because sometimes we cannot hold reference of input rows * because the some input rows are mutable and can be reused. */ -private class BatchIterator[T](iter: Iterator[T], batchSize: Int) +private[spark] class BatchIterator[T](iter: Iterator[T], batchSize: Int) Review comment: BTW this is also under python package. Let me try to pull it out this one as well in followup. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
