Remove redundant comment

This commit is contained in:
Yuriy Dupyn 2024-02-04 14:07:29 +01:00
parent daa39850f0
commit 017f34bafa

View file

@ -477,23 +477,3 @@ impl <'cursor, T> WriteCursor<'cursor, T> {
todo!() todo!()
} }
} }
// TODO
// pub async fn search_for(&mut self, index: T) -> Result<()>
// where T: Send
// {
// // let index = self.primary_index.borrow_mut();
// // let x = index.lookup(self, 123).await?;
// todo!()
// }
// pub async fn search_for_entry_with_id(&mut self, id: T) -> Result<Option<EntryDetailed<T>>> {
// // TODO: make call to the primary index
// todo!()
// }
// // TODO: This needs to be some sort of an iterator
// pub async fn get_all_eq(&self, column: Column, value: T) -> Result<Option<EntryDetailed<T>>> {
// todo!()
// }