Skip to content

Commit

Permalink
A few more excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Jun 3, 2015
1 parent 4bebcf0 commit 2f42d02
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions project/MimaExcludes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,12 @@ object MimaExcludes {
// the maven-generated artifacts in 1.3.
excludePackage("org.spark-project.jetty"),
MimaBuild.excludeSparkPackage("unused"),
// SPARK-7805 - Some SQL test code accidentally included in src/main
// JavaRDDLike is not meant to be extended by user programs
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.sql.test.SQLTestUtils.withTable")
"org.apache.spark.api.java.JavaRDDLike.partitioner"),
// Mima false positive (was a private[spark] class)
ProblemFilters.exclude[MissingClassProblem](
"org.apache.spark.util.collection.PairIterator")
)
case v if v.startsWith("1.4") =>
Seq(
Expand Down

0 comments on commit 2f42d02

Please sign in to comment.