From 7fe6963618cfbbed74dabf3133e3980b5c95a4a7 Mon Sep 17 00:00:00 2001 From: Adam Binford Date: Tue, 1 Oct 2024 19:28:48 -0400 Subject: [PATCH] Remove unused sql conf --- .../test/scala/org/apache/comet/CometExpressionSuite.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala b/spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala index 664d0e1d8..da22df402 100644 --- a/spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala +++ b/spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala @@ -2274,9 +2274,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper { test("GetArrayStructFields") { Seq(true, false).foreach { dictionaryEnabled => - withSQLConf( - SQLConf.OPTIMIZER_EXCLUDED_RULES.key -> SimplifyExtractValueOps.ruleName, - CometConf.COMET_SPARK_TO_ARROW_ENABLED.key -> "true") { + withSQLConf(SQLConf.OPTIMIZER_EXCLUDED_RULES.key -> SimplifyExtractValueOps.ruleName) { withTempDir { dir => val path = new Path(dir.toURI.toString, "test.parquet") makeParquetFileAllTypes(path, dictionaryEnabled = dictionaryEnabled, 10000)