This commit is contained in:
parent
9aa58194d4
commit
73a6a0c014
1 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
use futures::FutureExt;
|
||||
use crate::storage::*;
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
|
@ -29,7 +30,9 @@ impl IRowRef for MemRef {
|
|||
unimplemented!();
|
||||
}
|
||||
fn poll(&self) -> AsyncResult<Option<RowValue>> {
|
||||
unimplemented!();
|
||||
async {
|
||||
Ok(None)
|
||||
}.boxed()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue