Skip to content

Commit

Permalink
SPARK-7142: Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash Datta authored and Yash Datta committed Sep 10, 2015
1 parent 49b6d16 commit 7ada093
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ object BooleanSimplification extends Rule[LogicalPlan] with PredicateHelper {
case (Or(l, l1), r) if (l1 fastEquals Not(r)) => And(l, r)
case (Or(l1, l), r) if (l1 fastEquals Not(r)) => And(l, r)
// (a || b) && (a || c) => a || (b && c)
case _ =>
case _ =>
// 1. Split left and right to get the disjunctive predicates,
// i.e. lhs = (a, b), rhs = (a, c)
// 2. Find the common predict between lhsSet and rhsSet, i.e. common = (a)
Expand Down

0 comments on commit 7ada093

Please sign in to comment.