[HOTFIX] Fix whitespace style error

Author: Michael Armbrust <michael@databricks.com>

Closes #7102 from marmbrus/fixStyle and squashes the following commits:

8c08124 [Michael Armbrust] [HOTFIX] Fix whitespace style error
This commit is contained in:
Michael Armbrust 2015-06-29 15:57:36 -07:00 committed by Reynold Xin
parent 0de1737a8a
commit 0c3f7fc88a

View file

@ -309,7 +309,6 @@ trait HiveTypeCoercion {
def apply(plan: LogicalPlan): LogicalPlan = plan transformAllExpressions {
// Skip nodes who's children have not been resolved yet.
case e if !e.childrenResolved => e
case i @ In(a, b) if b.exists(_.dataType != a.dataType) =>
i.makeCopy(Array(a, b.map(Cast(_, a.dataType))))
}