Skip to content

Commit 449613a

Browse files
committed
style
1 parent 7c44c70 commit 449613a

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/optimizer/expressions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ object OptimizeIn extends Rule[LogicalPlan] {
223223
// When v is not nullable, the following expression will be optimized
224224
// to FalseLiteral which is tested in OptimizeInSuite.scala
225225
If(IsNotNull(v), FalseLiteral, Literal(null, BooleanType))
226-
case In(v, Seq(elem@Literal(_, _))) =>
226+
case In(v, Seq(elem @ Literal(_, _))) =>
227227
// `Expression` like `ListQuery` contains subquery which can not
228228
// be converted into `EqualTo`. Only `Literal` is converted for safety.
229229
EqualTo(v, elem)

0 commit comments

Comments
 (0)