spark git commit: [SPARK-13760][SQL] Fix BigDecimal constructor for FloatType

2016-03-09 Thread yhuai
Repository: spark Updated Branches: refs/heads/branch-1.6 bea91a9e9 -> 8a1bd5834 [SPARK-13760][SQL] Fix BigDecimal constructor for FloatType ## What changes were proposed in this pull request? A very minor change for using `BigDecimal.decimal(f: Float)` instead of `BigDecimal(f: float)`.

spark git commit: [SPARK-13760][SQL] Fix BigDecimal constructor for FloatType

2016-03-09 Thread yhuai
Repository: spark Updated Branches: refs/heads/master a4a0addcc -> 926e9c45a [SPARK-13760][SQL] Fix BigDecimal constructor for FloatType ## What changes were proposed in this pull request? A very minor change for using `BigDecimal.decimal(f: Float)` instead of `BigDecimal(f: float)`. The