Skip to content

Commit 2f42d02

Browse files
committed
A few more excludes
1 parent 4bebcf0 commit 2f42d02

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

project/MimaExcludes.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ object MimaExcludes {
4141
// the maven-generated artifacts in 1.3.
4242
excludePackage("org.spark-project.jetty"),
4343
MimaBuild.excludeSparkPackage("unused"),
44-
// SPARK-7805 - Some SQL test code accidentally included in src/main
44+
// JavaRDDLike is not meant to be extended by user programs
4545
ProblemFilters.exclude[MissingMethodProblem](
46-
"org.apache.spark.sql.test.SQLTestUtils.withTable")
46+
"org.apache.spark.api.java.JavaRDDLike.partitioner"),
47+
// Mima false positive (was a private[spark] class)
48+
ProblemFilters.exclude[MissingClassProblem](
49+
"org.apache.spark.util.collection.PairIterator")
4750
)
4851
case v if v.startsWith("1.4") =>
4952
Seq(

0 commit comments

Comments
 (0)