This is an automated email from the ASF dual-hosted git repository.
richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new b2577307 [AURON #1663] Fix: NativeEmptyExec should fallback on
unsupported types (#1664)
b2577307 is described below
commit b2577307f62383acbe6be3766a3da64d889a6531
Author: Thomas <[email protected]>
AuthorDate: Tue Nov 25 12:48:14 2025 +0800
[AURON #1663] Fix: NativeEmptyExec should fallback on unsupported types
(#1664)
---
.../src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
index 8b0b581b..5717e4d8 100644
---
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
+++
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
@@ -1090,8 +1090,12 @@ object AuronConverters extends Logging {
extends LeafExecNode
with NativeSupports {
+ private def nativeSchema = Util.getNativeSchema(output)
+
+ // check whether native converting is supported
+ nativeSchema
+
override protected def doExecuteNative(): NativeRDD = {
- val nativeSchema = Util.getNativeSchema(output)
val partitions = Range(0, outputPartitioning.numPartitions)
.map(i =>
new Partition {