diff --git a/backends-clickhouse/src/main/scala/org/apache/gluten/backendsapi/clickhouse/CHRuleApi.scala b/backends-clickhouse/src/main/scala/org/apache/gluten/backendsapi/clickhouse/CHRuleApi.scala index 3a00080d5d89..d3b06b92bf80 100644 --- a/backends-clickhouse/src/main/scala/org/apache/gluten/backendsapi/clickhouse/CHRuleApi.scala +++ b/backends-clickhouse/src/main/scala/org/apache/gluten/backendsapi/clickhouse/CHRuleApi.scala @@ -163,22 +163,6 @@ object CHRuleApi { injector.injectFinal(_ => RemoveFallbackTagRule()) } - /** - * Registers Gluten's columnar rules. These rules will be executed only when RAS (relational - * algebra selector) is enabled by spark.gluten.ras.enabled=true. - * - * These rules are covered by CI test job spark-test-spark35-ras. - */ - private def injectRas(injector: RasInjector): Unit = { - // CH backend doesn't work with RAS at the moment. Inject a rule that aborts any - // execution calls. - injector.injectPreTransform( - _ => - new SparkPlanRules.AbortRule( - "Clickhouse backend doesn't yet have RAS support, please try disabling RAS and" + - " rerunning the application")) - } - /** * Since https://github.com/apache/gluten/pull/883. *