Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/paimon-python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion paimon-python/pypaimon/tests/table_update_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def capture_projection(builder, projection):
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):
Expand Down
Loading