aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2014-07-22 11:45:37 -0700
committerXiangrui Meng <meng@databricks.com>2014-07-22 11:45:37 -0700
commit1407871733176c92c67ac547adf603c41a772f7f (patch)
tree7d03b833c5dab57ab1f4e6da5690f3f94b1f9ebc
parent75db1742abf9e08111ddf8f330e6561c5520a86c (diff)
downloadspark-1407871733176c92c67ac547adf603c41a772f7f.tar.gz
spark-1407871733176c92c67ac547adf603c41a772f7f.tar.bz2
spark-1407871733176c92c67ac547adf603c41a772f7f.zip
[MLLIB] make Mima ignore updateFeatures (private) in ALS
Fix Mima issues in #1521. Author: Xiangrui Meng <meng@databricks.com> Closes #1533 from mengxr/mima-als and squashes the following commits: 78386e1 [Xiangrui Meng] make Mima ignore updateFeatures (private) in ALS
-rw-r--r--project/MimaExcludes.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 4d86e1a0d8..5e5ddd227a 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -82,7 +82,9 @@ object MimaExcludes {
ProblemFilters.exclude[MissingMethodProblem]( // The only public constructor is the one without arguments.
"org.apache.spark.mllib.recommendation.ALS.this"),
ProblemFilters.exclude[MissingMethodProblem](
- "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$$<init>$default$7")
+ "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$$<init>$default$7"),
+ ProblemFilters.exclude[IncompatibleMethTypeProblem](
+ "org.apache.spark.mllib.recommendation.ALS.org$apache$spark$mllib$recommendation$ALS$^dateFeatures")
) ++
MimaBuild.excludeSparkClass("mllib.linalg.distributed.ColumnStatisticsAggregator") ++
MimaBuild.excludeSparkClass("rdd.ZippedRDD") ++