From 017f34bafa2049bb53cd5e0809a385ea9fecace2 Mon Sep 17 00:00:00 2001 From: Yuriy Dupyn <2153100+omedusyo@users.noreply.github.com> Date: Sun, 4 Feb 2024 14:07:29 +0100 Subject: [PATCH] Remove redundant comment --- storage_engine/src/cursor.rs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/storage_engine/src/cursor.rs b/storage_engine/src/cursor.rs index 8afe89f..c9913b9 100644 --- a/storage_engine/src/cursor.rs +++ b/storage_engine/src/cursor.rs @@ -477,23 +477,3 @@ impl <'cursor, T> WriteCursor<'cursor, T> { 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>> { - // // 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>> { - // todo!() - // }