WIP on file-lookup for expand-query

This commit is contained in:
Dominik Werder
2021-08-31 16:12:13 +02:00
parent ba568c8850
commit 6581946eaf
17 changed files with 170 additions and 95 deletions

View File

@@ -308,7 +308,7 @@ pub struct FileChunkRead {
}
pub fn file_content_stream(
mut file: tokio::fs::File,
mut file: File,
buffer_size: usize,
) -> impl Stream<Item = Result<FileChunkRead, Error>> + Send {
async_stream::stream! {