(&self, collection: &str, id: &str)
| 138 | } |
| 139 | |
| 140 | async fn document_delete(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 141 | self.document_delete_impl(collection, id).await |
| 142 | } |
| 143 | |
| 144 | async fn execute_sql(&self, query: &str, params: &[Value]) -> NodeDbResult<QueryResult> { |
| 145 | self.execute_sql_impl(query, params).await |
nothing calls this directly
no test coverage detected