Skip to content

Commit 5c04390

Browse files
committed
chore: cargo fix
1 parent 89e681d commit 5c04390

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

datafusion/src/datasource/parquet.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ mod tests {
150150
use super::*;
151151
use arrow::array::{
152152
BinaryArray, BooleanArray, Float32Array, Float64Array, Int32Array,
153-
TimestampNanosecondArray,
154153
};
155154
use arrow::record_batch::RecordBatch;
156155
use futures::StreamExt;

datafusion/src/execution/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ impl ExecutionContext {
559559
let handle: JoinHandle<Result<()>> = task::spawn(async move {
560560
stream
561561
.map(|batch| writer.write(&batch?))
562-
.try_collect()
562+
.try_collect::<()>()
563563
.await
564564
.map_err(DataFusionError::from)?;
565565
writer.close().map_err(DataFusionError::from).map(|_| ())

0 commit comments

Comments
 (0)