JkSelf commented on code in PR #11802:
URL: https://github.com/apache/gluten/pull/11802#discussion_r2975782098


##########
gluten-substrait/src/main/scala/org/apache/gluten/execution/ColumnarToRowExecBase.scala:
##########
@@ -60,4 +60,13 @@ abstract class ColumnarToRowExecBase(child: SparkPlan)
   override def doExecute(): RDD[InternalRow] = {
     doExecuteInternal()
   }
+
+  override def executeCollect(): Array[InternalRow] = {
+    child match {
+      case l: ColumnarCollectLimitBaseExec =>
+        l.executeCollect()

Review Comment:
   @jackylee-ch No. Move this changes into VeloxColumnarToRowExec.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to