We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 022d363 commit c338832Copy full SHA for c338832
sql/core/src/test/scala/org/apache/spark/sql/BenchmarkQueryTest.scala
@@ -64,7 +64,7 @@ abstract class BenchmarkQueryTest extends QueryTest with SharedSparkSession {
64
protected def checkGeneratedCode(plan: SparkPlan, checkMethodCodeSize: Boolean = true): Unit = {
65
val codegenSubtrees = new collection.mutable.HashSet[WholeStageCodegenExec]()
66
67
- def findSubtrees(paln: SparkPlan): Unit = {
+ def findSubtrees(plan: SparkPlan): Unit = {
68
plan foreach {
69
case s: WholeStageCodegenExec =>
70
codegenSubtrees += s
0 commit comments