Skip to content

Commit 18f7f17

Browse files
committed
Added jira id to test
1 parent 8adad2d commit 18f7f17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/plans/QueryPlanSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

sql/core/src/test/scala/org/apache/spark/sql/SubquerySuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)