Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
devinjdangelo committed Sep 25, 2023
1 parent 9815425 commit 3d26a6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion parquet/src/arrow/arrow_writer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ impl ChunkReader for ArrowColumnChunk {

fn get_read(&self, start: u64) -> Result<Self::T> {
assert_eq!(start, 0); // Assume append_column writes all data in one-shot
Ok(ArrowColumnChunkReader(self.data.clone().into_iter().peekable()))
Ok(ArrowColumnChunkReader(
self.data.clone().into_iter().peekable(),
))
}

fn get_bytes(&self, _start: u64, _length: usize) -> Result<Bytes> {
Expand Down

0 comments on commit 3d26a6d

Please sign in to comment.