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 93d6117 commit b3cc50eCopy full SHA for b3cc50e
project/MimaExcludes.scala
@@ -46,7 +46,9 @@ object MimaExcludes {
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")
+ "org.apache.spark.util.collection.PairIterator"),
50
+ // SQL execution is considered private.
51
+ excludePackage("org.apache.spark.sql.execution")
52
)
53
case v if v.startsWith("1.4") =>
54
Seq(
0 commit comments