feat: upgrade to lance 0.9.11 and expose merge_insert (#906)

This adds the python bindings requested in #870 The javascript/rust
bindings will be added in a future PR.
This commit is contained in:
Weston Pace
2024-02-01 11:36:29 -08:00
committed by GitHub
parent 62f053ac92
commit d77e95a4f4
6 changed files with 230 additions and 1 deletions

View File

@@ -244,6 +244,10 @@ class RemoteTable(Table):
result = self._conn._client.query(self._name, query)
return result.to_arrow()
def _do_merge(self, *_args):
"""_do_merge() is not supported on the LanceDB cloud yet"""
return NotImplementedError("_do_merge() is not supported on the LanceDB cloud")
def delete(self, predicate: str):
"""Delete rows from the table.