Skip to content

Commit 7ada093

Browse files
Yash DattaYash Datta
authored andcommitted
SPARK-7142: Fix whitespace
1 parent 49b6d16 commit 7ada093

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ object BooleanSimplification extends Rule[LogicalPlan] with PredicateHelper {
440440
case (Or(l, l1), r) if (l1 fastEquals Not(r)) => And(l, r)
441441
case (Or(l1, l), r) if (l1 fastEquals Not(r)) => And(l, r)
442442
// (a || b) && (a || c) => a || (b && c)
443-
case _ =>
443+
case _ =>
444444
// 1. Split left and right to get the disjunctive predicates,
445445
// i.e. lhs = (a, b), rhs = (a, c)
446446
// 2. Find the common predict between lhsSet and rhsSet, i.e. common = (a)

0 commit comments

Comments
 (0)