in-memory storage #32
1 changed files with 4 additions and 1 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue