Skip to content

Commit 93de319

Browse files
committed
order
1 parent 75ccd92 commit 93de319

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyiceberg/table/upsert_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def get_rows_to_update(source_table: pa.Table, target_table: pa.Table, join_cols
6969
operator.or_,
7070
[
7171
pc.or_kleene(
72-
pc.is_null(pc.not_equal(pc.field(f"{col}-lhs"), pc.field(f"{col}-rhs"))),
7372
pc.not_equal(pc.field(f"{col}-lhs"), pc.field(f"{col}-rhs")),
73+
pc.is_null(pc.not_equal(pc.field(f"{col}-lhs"), pc.field(f"{col}-rhs"))),
7474
)
7575
for col in non_key_cols
7676
],

0 commit comments

Comments
 (0)