This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 961c539 [SPARK-28998][SQL][FOLLOW-UP] Remove unnecessary MiMa excludes
961c539 is described below
commit 961c539a676d2646a9315b427ad81852aa81b658
Author: Huaxin Gao <[email protected]>
AuthorDate: Fri Feb 28 11:22:08 2020 -0800
[SPARK-28998][SQL][FOLLOW-UP] Remove unnecessary MiMa excludes
### What changes were proposed in this pull request?
Remove the cases for ```MissingTypesProblem```,
```InheritedNewAbstractMethodProblem```, ```DirectMissingMethodProblem``` and
```ReversedMissingMethodProblem```.
### Why are the changes needed?
After the changes, we don't have ```org.apache.spark.sql.sources.v2``` any
more, so the only problem we can get is ```MissingClassProblem```
### Does this PR introduce any user-facing change?
No
### How was this patch tested?
Manually tested
Closes #27731 from huaxingao/spark-28998-followup.
Authored-by: Huaxin Gao <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
project/MimaExcludes.scala | 8 --------
1 file changed, 8 deletions(-)
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index ccb545d..cd55fa8 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -339,14 +339,6 @@ object MimaExcludes {
(problem: Problem) => problem match {
case MissingClassProblem(cls) =>
!cls.fullName.startsWith("org.apache.spark.sql.sources.v2")
- case MissingTypesProblem(newCls, _) =>
- !newCls.fullName.startsWith("org.apache.spark.sql.sources.v2")
- case InheritedNewAbstractMethodProblem(cls, _) =>
- !cls.fullName.startsWith("org.apache.spark.sql.sources.v2")
- case DirectMissingMethodProblem(meth) =>
- !meth.owner.fullName.startsWith("org.apache.spark.sql.sources.v2")
- case ReversedMissingMethodProblem(meth) =>
- !meth.owner.fullName.startsWith("org.apache.spark.sql.sources.v2")
case _ => true
},
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]