Skip to content

Commit b3cc50e

Browse files
committed
Mima excludes.
1 parent 93d6117 commit b3cc50e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

project/MimaExcludes.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ object MimaExcludes {
4646
"org.apache.spark.api.java.JavaRDDLike.partitioner"),
4747
// Mima false positive (was a private[spark] class)
4848
ProblemFilters.exclude[MissingClassProblem](
49-
"org.apache.spark.util.collection.PairIterator")
49+
"org.apache.spark.util.collection.PairIterator"),
50+
// SQL execution is considered private.
51+
excludePackage("org.apache.spark.sql.execution")
5052
)
5153
case v if v.startsWith("1.4") =>
5254
Seq(

0 commit comments

Comments
 (0)