Skip to content

Commit

Permalink
Support multiple GZip members in parquet page
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Oct 18, 2023
1 parent 51ac6fe commit a2d9719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/src/compression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ mod gzip_codec {
output_buf: &mut Vec<u8>,
_uncompress_size: Option<usize>,
) -> Result<usize> {
let mut decoder = read::GzDecoder::new(input_buf);
let mut decoder = read::MultiGzDecoder::new(input_buf);
decoder.read_to_end(output_buf).map_err(|e| e.into())
}

Expand Down

0 comments on commit a2d9719

Please sign in to comment.