in-memory storage #32

Merged
quentin merged 65 commits from in-memory into main 2023-12-27 16:35:43 +00:00
Showing only changes of commit 73a6a0c014 - Show all commits

View file

@ -1,3 +1,4 @@
use futures::FutureExt;
use crate::storage::*; use crate::storage::*;
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
@ -29,7 +30,9 @@ impl IRowRef for MemRef {
unimplemented!(); unimplemented!();
} }
fn poll(&self) -> AsyncResult<Option<RowValue>> { fn poll(&self) -> AsyncResult<Option<RowValue>> {
unimplemented!(); async {
Ok(None)
}.boxed()
} }
} }