From adf02d38061bd0ef48fd07252bef7706a0e49757 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Fri, 19 Apr 2024 20:04:13 -0700 Subject: [PATCH] [SPARK-47925][SQL][TESTS] Mark `BloomFilterAggregateQuerySuite` as `ExtendedSQLTest` ### What changes were proposed in this pull request? This PR aims to mark `BloomFilterAggregateQuerySuite` as `ExtendedSQLTest` to run in a different test pipeline. ### Why are the changes needed? This will move this test case from `sql - other tests` to `sql - extended tests` to rebalance test pipelines. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #46145 from dongjoon-hyun/SPARK-47925. Authored-by: Dongjoon Hyun Signed-off-by: Dongjoon Hyun --- .../org/apache/spark/sql/BloomFilterAggregateQuerySuite.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/core/src/test/scala/org/apache/spark/sql/BloomFilterAggregateQuerySuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/BloomFilterAggregateQuerySuite.scala index 4edb51d271903..9b39a2295e7d6 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/BloomFilterAggregateQuerySuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/BloomFilterAggregateQuerySuite.scala @@ -26,10 +26,12 @@ import org.apache.spark.sql.execution.aggregate.BaseAggregateExec import org.apache.spark.sql.internal.SQLConf import org.apache.spark.sql.test.SharedSparkSession import org.apache.spark.sql.types.LongType +import org.apache.spark.tags.ExtendedSQLTest /** * Query tests for the Bloom filter aggregate and filter function. */ +@ExtendedSQLTest class BloomFilterAggregateQuerySuite extends QueryTest with SharedSparkSession { import testImplicits._