Skip to content

Commit

Permalink
Merge branch 'main' into refactor/more_python_stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco authored Aug 27, 2024
2 parents 12b5104 + ba4ab74 commit 1c0d714
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/deltalake/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,9 @@ def merge(
safe_cast=not error_on_type_mismatch,
writer_properties=writer_properties,
custom_metadata=custom_metadata,
post_commithook_properties=post_commithook_properties,
post_commithook_properties=post_commithook_properties.__dict__
if post_commithook_properties
else None,
)
return TableMerger(py_merge_builder, self._table)

Expand Down

0 comments on commit 1c0d714

Please sign in to comment.