Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuataylor committed Jun 24, 2022
1 parent e160194 commit 298b6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-testing/src/bin/arrow-stream-to-file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use arrow2::io::ipc::write;
fn main() -> Result<()> {
let mut reader = io::stdin();
let metadata = read::read_stream_metadata(&mut reader)?;
let mut arrow_stream_reader = read::StreamReader::new(reader, metadata.clone());
let mut arrow_stream_reader = read::StreamReader::new(reader, metadata.clone(), None);

let writer = io::stdout();

Expand Down

0 comments on commit 298b6f4

Please sign in to comment.