Skip to content

Commit 8b2be71

Browse files
committed
Remove unnecessary variable
1 parent 16e4954 commit 8b2be71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/GenerateUnsafeProjection.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ object GenerateUnsafeProjection extends CodeGenerator[Seq[Expression], UnsafePro
314314
""".stripMargin
315315

316316
val runInsideLoop = expressions.exists {
317-
case e: LambdaVariable => true
317+
case _: LambdaVariable => true
318318
case _ => false
319319
}
320320
val extractValueCode = if (runInsideLoop) {

0 commit comments

Comments
 (0)