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/05/15 07:34:45 UTC

[spark] branch branch-2.4 updated: [SPARK-31716][SQL] Use fallback versions in HiveExternalCatalogVersionsSuite

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

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


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new c3ae928  [SPARK-31716][SQL] Use fallback versions in HiveExternalCatalogVersionsSuite
c3ae928 is described below

commit c3ae9283726ec9f360a10068362e7734744a713c
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Fri May 15 00:30:25 2020 -0700

    [SPARK-31716][SQL] Use fallback versions in HiveExternalCatalogVersionsSuite
    
    # What changes were proposed in this pull request?
    
    This PR aims to provide a fallback version instead of `Nil` in `HiveExternalCatalogVersionsSuite`. The provided fallback Spark versions recovers Jenkins jobs instead of failing.
    
    ### Why are the changes needed?
    
    Currently, `HiveExternalCatalogVersionsSuite` is aborted in all Jenkins jobs except JDK11 Jenkins jobs which don't have old Spark releases supporting JDK11.
    ```
    HiveExternalCatalogVersionsSuite:
    org.apache.spark.sql.hive.HiveExternalCatalogVersionsSuite *** ABORTED ***
      Exception encountered when invoking run on a nested suite - Fail to get the lates Spark versions to test. (HiveExternalCatalogVersionsSuite.scala:180)
    ```
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    Pass the Jenkins
    
    Closes #28536 from dongjoon-hyun/SPARK-HiveExternalCatalogVersionsSuite.
    
    Authored-by: Dongjoon Hyun <do...@apache.org>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
    (cherry picked from commit 5d90886523c415768c65ea9cba7db24bc508a23b)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .../org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala
index c75cc57..e33d8ff 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala
@@ -219,7 +219,7 @@ object PROCESS_TABLES extends QueryTest with SQLTestUtils {
         .filter(_ < org.apache.spark.SPARK_VERSION)
     } catch {
       // do not throw exception during object initialization.
-      case NonFatal(_) => Nil
+      case NonFatal(_) => Seq("2.3.4", "2.4.5") // A temporary fallback to use a specific version
     }
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org