This is an automated email from the ASF dual-hosted git repository. taiyang-li pushed a commit to branch fake_add_bolt_backend in repository https://gitbox.apache.org/repos/asf/gluten.git
commit e66e23e3655d7109a282a22bc53c9240932189ab Author: liyang.127 <[email protected]> AuthorDate: Tue Jun 30 21:16:22 2026 +0800 [GLUTEN][CORE] Switch shared RowToColumnarFuzzer to SharedRowToColumnarExec After the previous patch extracted SharedRowToColumnarExec as the backend-agnostic base, the shared RowToColumnarFuzzer can now match on SharedRowToColumnarExec instead of the velox-specific subclass. This unbinds the fuzzer from any backend so all backends can reuse it directly. Generated-by: TraeCli openrouter-3o --- .../src/test/scala/org/apache/gluten/fuzzer/RowToColumnarFuzzer.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends-core/src/test/scala/org/apache/gluten/fuzzer/RowToColumnarFuzzer.scala b/backends-core/src/test/scala/org/apache/gluten/fuzzer/RowToColumnarFuzzer.scala index eeff98dccb..a74b8e2476 100644 --- a/backends-core/src/test/scala/org/apache/gluten/fuzzer/RowToColumnarFuzzer.scala +++ b/backends-core/src/test/scala/org/apache/gluten/fuzzer/RowToColumnarFuzzer.scala @@ -17,7 +17,7 @@ package org.apache.gluten.fuzzer import org.apache.gluten.config.GlutenConfig -import org.apache.gluten.execution.RowToVeloxColumnarExec +import org.apache.gluten.execution.SharedRowToColumnarExec import org.apache.gluten.fuzzer.FuzzerResult.Successful import org.apache.gluten.tags.{FuzzerTest, SkipTest} @@ -34,7 +34,7 @@ class RowToColumnarFuzzer extends FuzzerBase { } private def checkOperators(df: DataFrame): Unit = { - checkGlutenPlan[RowToVeloxColumnarExec](df) + checkGlutenPlan[SharedRowToColumnarExec](df) } private val TEST_ROW_TO_COLUMNAR = "row to columnar" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
