From 60e7501bb81dbdfd2de78e3cef72f6eca680e50f Mon Sep 17 00:00:00 2001 From: sychen Date: Thu, 2 Jan 2025 17:37:01 +0800 Subject: [PATCH 1/3] [spark] Bump Spark 3.5.4 --- paimon-spark/paimon-spark-3.5/pom.xml | 2 +- pom.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/paimon-spark/paimon-spark-3.5/pom.xml b/paimon-spark/paimon-spark-3.5/pom.xml index c8feee030e9c..2540058d3755 100644 --- a/paimon-spark/paimon-spark-3.5/pom.xml +++ b/paimon-spark/paimon-spark-3.5/pom.xml @@ -32,7 +32,7 @@ under the License. Paimon : Spark : 3.5 - 3.5.3 + 3.5.4 diff --git a/pom.xml b/pom.xml index 4524bdde8c6b..6600f040902c 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ under the License. paimon-spark3-common - 3.5.3 + 3.5.4 3.3 3.3.0 @@ -368,7 +368,7 @@ under the License. 2.12 ${scala212.version} - 3.5.3 + 3.5.4 paimon-spark3-common 3.3 From 51126699ce8d6fbce41ffa93dbbb223ad7f9f84c Mon Sep 17 00:00:00 2001 From: sychen Date: Thu, 2 Jan 2025 21:39:34 +0800 Subject: [PATCH 2/3] test --- .../scala/org/apache/paimon/spark/sql/PaimonFunctionTest.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/PaimonFunctionTest.scala b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/PaimonFunctionTest.scala index f399ca3e6f01..bb48983a85a6 100644 --- a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/PaimonFunctionTest.scala +++ b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/PaimonFunctionTest.scala @@ -97,7 +97,7 @@ class PaimonFunctionTest extends PaimonHiveTestBase { Row("spark_catalog.test_hive.myintsum")) withTable("t") { - sql("CREATE TABLE t (id INT)") + sql("CREATE TABLE t (id INT) USING paimon") sql("INSERT INTO t VALUES (1), (2), (3)") checkAnswer(sql("SELECT myIntSum(id) FROM t"), Row(6)) } From 1ffcb5eb816b74d44192ecf0f4a34f3e54697efc Mon Sep 17 00:00:00 2001 From: sychen Date: Fri, 3 Jan 2025 10:53:01 +0800 Subject: [PATCH 3/3] trigger test