Skip to content

Commit 2420f7a

Browse files
committed
unnecessary change
1 parent 659ea08 commit 2420f7a

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
@@ -62,7 +62,7 @@ def get_rows_to_update(source_table: pa.Table, target_table: pa.Table, join_cols
6262
"""
6363
all_columns = set(source_table.column_names)
6464
join_cols_set = set(join_cols)
65-
non_key_cols = list(all_columns - join_cols_set)
65+
non_key_cols = all_columns - join_cols_set
6666

6767
if has_duplicate_rows(target_table, join_cols):
6868
raise ValueError("Target table has duplicate rows, aborting upsert")

0 commit comments

Comments
 (0)