(&self, collection: &str, id: &str)
| 148 | } |
| 149 | |
| 150 | async fn document_delete(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 151 | self.document_delete_impl(collection, id).await |
| 152 | } |
| 153 | |
| 154 | async fn execute_sql(&self, query: &str, params: &[Value]) -> NodeDbResult<QueryResult> { |
| 155 | self.execute_sql_impl(query, params).await |
nothing calls this directly
no test coverage detected