File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
catalyst/src/test/scala/org/apache/spark/sql/catalyst/plans
core/src/test/scala/org/apache/spark/sql Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ class QueryPlanSuite extends SparkFunSuite {
102102 assert(testRule(plan).resolved)
103103 }
104104
105- test(" Add jira : add a deterministic field to QueryPlan" ) {
105+ test(" SPARK-37199 : add a deterministic field to QueryPlan" ) {
106106 val a : NamedExpression = AttributeReference (" a" , IntegerType )()
107107 val aRand : NamedExpression = Alias (a + Rand (1 ), " aRand" )()
108108 val deterministicPlan = Project (
Original file line number Diff line number Diff line change @@ -1946,7 +1946,7 @@ class SubquerySuite extends QueryTest with SharedSparkSession with AdaptiveSpark
19461946 }
19471947 }
19481948
1949- test(" Add jira : deterministic in QueryPlan considers subquery" ) {
1949+ test(" SPARK-37199 : deterministic in QueryPlan considers subquery" ) {
19501950 val deterministicQueryPlan = sql(" select (select 1 as b) as b" )
19511951 .queryExecution.executedPlan
19521952 assert(deterministicQueryPlan.deterministic)
You can’t perform that action at this time.
0 commit comments