Skip to content

Commit 2ea6a55

Browse files
committed
Added MimaExcludes for Vectors.argmax
1 parent 98058f4 commit 2ea6a55

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

project/MimaExcludes.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ object MimaExcludes {
9595
"org.apache.spark.api.r.StringRRDD.this"),
9696
ProblemFilters.exclude[MissingMethodProblem](
9797
"org.apache.spark.api.r.BaseRRDD.this")
98+
) ++ Seq(
99+
// SPARK-7422 add argmax for sparse vectors
100+
ProblemFilters.exclude[MissingMethodProblem](
101+
"org.apache.spark.mllib.linalg.Vector.argmax")
98102
)
99103

100104
case v if v.startsWith("1.4") =>

0 commit comments

Comments
 (0)