Skip to content

Commit

Permalink
Mark ArrowReader as Send (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
progval authored Mar 5, 2024
1 parent 1489ebf commit 6fdab55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrow_reader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl<R: AsyncChunkReader + 'static> ArrowReaderBuilder<R> {
pub struct ArrowReader<R> {
cursor: Cursor<R>,
schema_ref: SchemaRef,
current_stripe: Option<Box<dyn Iterator<Item = Result<RecordBatch>>>>,
current_stripe: Option<Box<dyn Iterator<Item = Result<RecordBatch>> + Send>>,
batch_size: usize,
}

Expand Down

0 comments on commit 6fdab55

Please sign in to comment.