File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,14 @@ object MimaExcludes {
4343 MimaBuild .excludeSparkPackage(" unused" ),
4444 // SPARK-7805 - Some SQL test code accidentally included in src/main
4545 ProblemFilters .exclude[MissingMethodProblem ](
46- " org.apache.spark.sql.test.SQLTestUtils.withTable" )
46+ " org.apache.spark.sql.test.SQLTestUtils.withTable" ),
47+ // TODO: REMOVE THESE AFTER 1.4 IS RELEASED - Transient changes in 1.4
48+ ProblemFilters .exclude[MissingClassProblem ](
49+ " org.apache.spark.status.api.v1.JsonRootResource" ),
50+ ProblemFilters .exclude[MissingClassProblem ](
51+ " org.apache.spark.status.api.v1.JsonRootResource$" ),
52+ ProblemFilters .exclude[MissingMethodProblem ](
53+ " org.apache.spark.streaming.StreamingContext.withNamedScope" )
4754 )
4855 case v if v.startsWith(" 1.4" ) =>
4956 Seq (
You can’t perform that action at this time.
0 commit comments