We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bebcf0 commit 2f42d02Copy full SHA for 2f42d02
project/MimaExcludes.scala
@@ -41,9 +41,12 @@ object MimaExcludes {
41
// the maven-generated artifacts in 1.3.
42
excludePackage("org.spark-project.jetty"),
43
MimaBuild.excludeSparkPackage("unused"),
44
- // SPARK-7805 - Some SQL test code accidentally included in src/main
+ // JavaRDDLike is not meant to be extended by user programs
45
ProblemFilters.exclude[MissingMethodProblem](
46
- "org.apache.spark.sql.test.SQLTestUtils.withTable")
+ "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")
50
)
51
case v if v.startsWith("1.4") =>
52
Seq(
0 commit comments