Revert "added capability to pass WriteParams to delete"

This reverts commit 1415d1a23a.
This commit is contained in:
albertlockett
2024-07-19 11:25:57 -03:00
parent 2e1f4bfc62
commit c011539905
5 changed files with 9 additions and 10 deletions

View File

@@ -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, None).await.infer_error()
inner.delete(&condition).await.infer_error()
})
}