You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2020/02/28 19:23:20 UTC

[spark] branch branch-3.0 updated: [SPARK-28998][SQL][FOLLOW-UP] Remove unnecessary MiMa excludes

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 2342e28  [SPARK-28998][SQL][FOLLOW-UP] Remove unnecessary MiMa excludes
2342e28 is described below

commit 2342e280a57a108ff2327aae7157d85065016244
Author: Huaxin Gao <hu...@us.ibm.com>
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 <hu...@us.ibm.com>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
    (cherry picked from commit 961c539a676d2646a9315b427ad81852aa81b658)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 project/MimaExcludes.scala | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 23f33a6..7f66577 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -335,14 +335,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: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org