From cc212b53427d1fc7bcd226a1b1cd548df9db1ba5 Mon Sep 17 00:00:00 2001 From: Josh Casale Date: Fri, 26 Apr 2024 20:45:53 +0100 Subject: [PATCH] nit --- vortex-ipc/src/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-ipc/src/reader.rs b/vortex-ipc/src/reader.rs index ff8278c37b..50c7e2af74 100644 --- a/vortex-ipc/src/reader.rs +++ b/vortex-ipc/src/reader.rs @@ -185,7 +185,7 @@ impl<'a, R: Read> StreamArrayReader<'a, R> { let mut row_offset = self.row_offset; - // Continue reading batches from the stream until we either run out or find all indices + // Continue reading batches from the stream until we either run out while let Some(batch) = self.next()? { let left = search_sorted::(indices, row_offset, SearchSortedSide::Left)?.to_index();