You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2022/04/18 07:09:45 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #2355] Bump Delta Lake 1.2.0

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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new 5bf4184ca [KYUUBI #2355] Bump Delta Lake 1.2.0
5bf4184ca is described below

commit 5bf4184ca4479ca99b71445b89789b3994accdfe
Author: Nick Song <ch...@163.com>
AuthorDate: Mon Apr 18 15:09:35 2022 +0800

    [KYUUBI #2355] Bump Delta Lake 1.2.0
    
    ### _Why are the changes needed?_
    
    #2355 Bump Delta Lake 1.2.0
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #2389 from Nick-0723/2355.
    
    Closes #2355
    
    202f448d [宋财礼] remove unnecessary dependency
    5fc7cf58 [Nick Song] Bump Delta Lake 1.2.0
    3984c6b2 [Nick Song] Bump Delta Lake 1.2.0
    
    Lead-authored-by: Nick Song <ch...@163.com>
    Co-authored-by: 宋财礼 <ca...@nio.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 kyuubi-common/src/test/scala/org/apache/kyuubi/DeltaSuiteMixin.scala | 2 +-
 pom.xml                                                              | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kyuubi-common/src/test/scala/org/apache/kyuubi/DeltaSuiteMixin.scala b/kyuubi-common/src/test/scala/org/apache/kyuubi/DeltaSuiteMixin.scala
index e363acf40..2ebad55f5 100644
--- a/kyuubi-common/src/test/scala/org/apache/kyuubi/DeltaSuiteMixin.scala
+++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/DeltaSuiteMixin.scala
@@ -30,7 +30,7 @@ trait DeltaSuiteMixin extends DataLakeSuiteMixin {
   override protected def extraJars: String = {
     System.getProperty("java.class.path")
       .split(":")
-      .filter(_.contains("delta-core")).head
+      .filter(_.contains("io/delta/delta")).mkString(",")
   }
 
   override protected def extraConfigs = Map(
diff --git a/pom.xml b/pom.xml
index 3191bc83d..c6663bf12 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,7 +104,7 @@
         <commons-lang.version>2.6</commons-lang.version>
         <commons-lang3.version>3.10</commons-lang3.version>
         <curator.version>2.12.0</curator.version>
-        <delta.version>1.1.0</delta.version>
+        <delta.version>1.2.0</delta.version>
         <fb303.version>0.9.3</fb303.version>
         <flink.version>1.14.4</flink.version>
         <flink.archive.name>flink-${flink.version}-bin-scala_${scala.binary.version}.tgz</flink.archive.name>
@@ -1896,7 +1896,7 @@
             <id>spark-3.2</id>
             <properties>
                 <spark.version>3.2.1</spark.version>
-                <delta.version>1.1.0</delta.version>
+                <delta.version>1.2.0</delta.version>
                 <iceberg.name>iceberg-spark-runtime-3.2_${scala.binary.version}</iceberg.name>
                 <maven.plugin.scalatest.exclude.tags>org.apache.kyuubi.tags.ExtendedSQLTest,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
             </properties>