Skip to content

Commit

Permalink
fix: return LanceMergeInsertBuilder in overridden merge_insert method…
Browse files Browse the repository at this point in the history
… on remote table (lancedb#1484)
  • Loading branch information
rpgreen authored Jul 31, 2024
1 parent a062a92 commit 6af69b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/python/lancedb/remote/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def merge_insert(self, on: Union[str, Iterable[str]]) -> LanceMergeInsertBuilder
See [`Table.merge_insert`][lancedb.table.Table.merge_insert] for more details.
"""
super().merge_insert(on)
return super().merge_insert(on)

def _do_merge(
self,
Expand Down

0 comments on commit 6af69b5

Please sign in to comment.