Repository: spark Updated Branches: refs/heads/master 0b19122d4 -> 0f93b91a7
[SPARK-23751][FOLLOW-UP] fix build for scala-2.12 ## What changes were proposed in this pull request? fix build for scala-2.12 ## How was this patch tested? Manual. Author: WeichenXu <weichen...@databricks.com> Closes #21051 from WeichenXu123/fix_build212. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0f93b91a Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0f93b91a Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0f93b91a Branch: refs/heads/master Commit: 0f93b91a71444a1a938acfd8ea2191c54fb0187c Parents: 0b19122 Author: WeichenXu <weichen...@databricks.com> Authored: Thu Apr 12 15:47:42 2018 -0600 Committer: Joseph K. Bradley <jos...@databricks.com> Committed: Thu Apr 12 15:47:42 2018 -0600 ---------------------------------------------------------------------- .../scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/0f93b91a/mllib/src/main/scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala b/mllib/src/main/scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala index af8ff64..adf8145 100644 --- a/mllib/src/main/scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala +++ b/mllib/src/main/scala/org/apache/spark/ml/stat/KolmogorovSmirnovTest.scala @@ -85,7 +85,7 @@ object KolmogorovSmirnovTest { dataset: Dataset[_], sampleCol: String, cdf: Function[java.lang.Double, java.lang.Double]): DataFrame = { - test(dataset, sampleCol, (x: Double) => cdf.call(x)) + test(dataset, sampleCol, (x: Double) => cdf.call(x).toDouble) } /** --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org