Skip to content
Prev Previous commit
Next Next commit
fix comment
  • Loading branch information
BryanCutler committed Nov 8, 2018
commit 8045facbe523c89b91b930203bb6874d82d08a4d
2 changes: 1 addition & 1 deletion sql/core/src/main/scala/org/apache/spark/sql/Dataset.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3179,7 +3179,7 @@ class Dataset[T] private[sql](
val batchOrder = new ArrayBuffer[(Int, Int)]()
var partitionCount = 0

// Handler to eagerly write batches to Python un-ordered
// Handler to eagerly write batches to Python as they arrive, un-ordered
def handlePartitionBatches(index: Int, arrowBatches: Array[Array[Byte]]): Unit = {
if (arrowBatches.nonEmpty) {
// Write all batches (can be more than 1) in the partition, store the batch order tuple
Expand Down