Skip to content

Commit

Permalink
remove a decimal case branch that has no effect
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxr committed Nov 10, 2014
1 parent 6e7a309 commit 955e9fb
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ protected[sql] object DataTypeConversions {
def convertJavaToCatalyst(a: Any, dataType: DataType): Any = (a, dataType) match {
case (obj, udt: UserDefinedType[_]) => ScalaReflection.convertToCatalyst(obj, udt) // Scala type
case (d: java.math.BigDecimal, _) => Decimal(BigDecimal(d))
case (d: java.math.BigDecimal, _) => BigDecimal(d)
case (other, _) => other
}

Expand Down

0 comments on commit 955e9fb

Please sign in to comment.