Skip to content

Commit 6b9ddf4

Browse files
committed
minor
1 parent d8f71b5 commit 6b9ddf4

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
@@ -116,7 +116,7 @@ def get_rows_to_update(source_table: pa.Table, target_table: pa.Table, join_cols
116116
joined = source_index.join(target_index, keys=list(join_cols_set), join_type="left outer")
117117

118118
# Step 4: Create a boolean mask for rows that do NOT exist in the target
119-
# i.e., where 'from_target' is null after the join
119+
# i.e., where market column is null after the join
120120
to_update_mask = pc.invert(pc.is_null(joined[MARKER_COLUMN_NAME]))
121121

122122
# Step 5: Filter source table using the mask (keep only rows that should be updated),

0 commit comments

Comments
 (0)