viirya commented on code in PR #774: URL: https://github.com/apache/datafusion-comet/pull/774#discussion_r1702940892
########## spark/src/main/scala/org/apache/spark/sql/comet/CometWindowExec.scala: ########## @@ -65,71 +65,27 @@ case class CometWindowExec( sparkContext, "number of partitions")) ++ readMetrics ++ writeMetrics - override def supportsColumnar: Boolean = true - - protected override def doExecuteColumnar(): RDD[ColumnarBatch] = { - val childRDD = child.executeColumnar() - - childRDD.mapPartitionsInternal { iter => - CometExec.getCometIterator( - Seq(iter), - getNativePlan(output, windowExpression, partitionSpec, orderSpec, child).get) - } - } - override def outputOrdering: Seq[SortOrder] = child.outputOrdering override def outputPartitioning: Partitioning = child.outputPartitioning protected def withNewChildInternal(newChild: SparkPlan): SparkPlan = this.copy(child = newChild) -} - -object CometWindowExec { - def getNativePlan( Review Comment: Because `Window` is native operator, we should chain it in the native operators instead of creating a pseudo scan for it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org