From b49b0a214e7a4efa721bfaf93aa78c78c869524b Mon Sep 17 00:00:00 2001 From: JiaKe Date: Fri, 23 Jul 2021 12:46:34 +0800 Subject: [PATCH] [NSE-421] disable the whole stage code gen for the ArrowColumnarToRow operator (#422) --- .../scala/com/intel/oap/execution/ArrowColumnarToRowExec.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native-sql-engine/core/src/main/scala/com/intel/oap/execution/ArrowColumnarToRowExec.scala b/native-sql-engine/core/src/main/scala/com/intel/oap/execution/ArrowColumnarToRowExec.scala index 2fab06dd6..f62011d41 100644 --- a/native-sql-engine/core/src/main/scala/com/intel/oap/execution/ArrowColumnarToRowExec.scala +++ b/native-sql-engine/core/src/main/scala/com/intel/oap/execution/ArrowColumnarToRowExec.scala @@ -34,6 +34,8 @@ import scala.concurrent.duration._ class ArrowColumnarToRowExec(child: SparkPlan) extends ColumnarToRowExec(child = child) { override def nodeName: String = "ArrowColumnarToRow" + override def supportCodegen: Boolean = false + buildCheck() def buildCheck(): Unit = {