(&self, collection: &str, id: &str)
| 169 | } |
| 170 | |
| 171 | pub(super) async fn vector_delete_impl(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 172 | let collection = quote_identifier(collection); |
| 173 | let sql = format!("DELETE FROM {collection} WHERE id = $1"); |
| 174 | self.execute_raw(&sql, &[&id]).await?; |
| 175 | Ok(()) |
| 176 | } |
| 177 | } |
no test coverage detected