Skip to content

Commit 2f9129a

Browse files
committed
fix mima
1 parent a719184 commit 2f9129a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

project/MimaExcludes.scala

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,14 @@ object MimaExcludes {
537537
// SPARK-13927: add row/column iterator to local matrices
538538
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.mllib.linalg.Matrix.rowIter"),
539539
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.mllib.linalg.Matrix.colIter")
540+
) ++ Seq(
541+
// [SPARK-13928] Move org.apache.spark.Logging into org.apache.spark.internal.Logging
542+
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.Logging"),
543+
(problem: Problem) => problem match {
544+
case MissingTypesProblem(_, missing)
545+
if missing.map(_.fullName).sameElements(Seq("org.apache.spark.Logging")) => false
546+
case _ => true
547+
}
540548
)
541549
case v if v.startsWith("1.6") =>
542550
Seq(

0 commit comments

Comments
 (0)