mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-13 07:12:57 +00:00
added capability to pass WriteParams to delete
This commit is contained in:
@@ -119,7 +119,7 @@ impl Table {
|
||||
pub fn delete(self_: PyRef<'_, Self>, condition: String) -> PyResult<&PyAny> {
|
||||
let inner = self_.inner_ref()?.clone();
|
||||
future_into_py(self_.py(), async move {
|
||||
inner.delete(&condition).await.infer_error()
|
||||
inner.delete(&condition, None).await.infer_error()
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user