File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,15 @@ object MimaExcludes {
3636 case v if v.startsWith("1.6") =>
3737 Seq(
3838 MimaBuild.excludeSparkPackage("deploy"),
39+ MimaBuild.excludeSparkPackage("network"),
3940 // These are needed if checking against the sbt build, since they are part of
4041 // the maven-generated artifacts in 1.3.
4142 excludePackage("org.spark-project.jetty"),
4243 MimaBuild.excludeSparkPackage("unused"),
43- ProblemFilters.exclude[MissingClassProblem](
44- "org.apache.spark.sql.execution.datasources.DefaultSource")
45- )
44+ // SQL execution is considered private.
45+ excludePackage("org.apache.spark.sql.execution"),
46+ ) ++
47+ MimaBuild.excludeSparkClass("streaming.flume.FlumeTestUtils")
4648 case v if v.startsWith("1.5") =>
4749 Seq(
4850 MimaBuild.excludeSparkPackage("network"),
You can’t perform that action at this time.
0 commit comments