From 298b6f4caad9eb24297b265263fe7948a8c04258 Mon Sep 17 00:00:00 2001 From: Josh Taylor Date: Fri, 24 Jun 2022 11:32:01 +0800 Subject: [PATCH] Fix integration test --- integration-testing/src/bin/arrow-stream-to-file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-testing/src/bin/arrow-stream-to-file.rs b/integration-testing/src/bin/arrow-stream-to-file.rs index ab0855bf677..f5d9f81fd70 100644 --- a/integration-testing/src/bin/arrow-stream-to-file.rs +++ b/integration-testing/src/bin/arrow-stream-to-file.rs @@ -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();