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

JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 8145d13279 [ci][python] Fix lint-python native-plan CI failure (#9255)
8145d13279 is described below

commit 8145d13279ccb3b6ff324633b79d3ce85ade8e74
Author: XiaoHongbo <[email protected]>
AuthorDate: Mon Aug 17 11:17:22 2026 +0800

    [ci][python] Fix lint-python native-plan CI failure (#9255)
---
 .github/workflows/paimon-python-checks.yml        | 2 +-
 paimon-python/pypaimon/tests/table_update_test.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/paimon-python-checks.yml 
b/.github/workflows/paimon-python-checks.yml
index 6e56db488d..d2a8ed781c 100755
--- a/.github/workflows/paimon-python-checks.yml
+++ b/.github/workflows/paimon-python-checks.yml
@@ -34,7 +34,7 @@ env:
   JDK_VERSION: 8
   MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 
-Dmaven.wagon.http.retryHandler.requestSentEnabled=true
   LUMINA_DATA_VERSION: 0.1.0
-  PYPAIMON_RUST_REV: c7a71f4c3c9c5bf8883c1621caed09ec0ea2e49b
+  PYPAIMON_RUST_REV: be5456e96b326939570b6ef5d63acddda3311c4f
 
 
 concurrency:
diff --git a/paimon-python/pypaimon/tests/table_update_test.py 
b/paimon-python/pypaimon/tests/table_update_test.py
index ac641b65dd..8c8a7d00b8 100644
--- a/paimon-python/pypaimon/tests/table_update_test.py
+++ b/paimon-python/pypaimon/tests/table_update_test.py
@@ -386,7 +386,7 @@ class _TableUpdateTestBase(DataEvolutionTestBase):
         self.assertEqual([['_ROW_ID']], projections)
         self.assertEqual(
             ['NYC', 'LA', 'Updated', 'Updated', 'Updated'],
-            self._read_all(table)['city'].to_pylist(),
+            self._read_all(table).sort_by('id')['city'].to_pylist(),
         )
 
     def test_update_by_predicate_accepts_array_chunked_and_scalar_values(self):

Reply via email to