(&mut self)
| 225 | } |
| 226 | |
| 227 | fn init_embeddings(&mut self) -> PristineResult<()> { |
| 228 | // Opening the table with a WriteTransaction creates it if it doesn't exist |
| 229 | let _ = self.txn.open_table(EMBEDDINGS)?; |
| 230 | Ok(()) |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | #[cfg(test)] |
no outgoing calls