We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When writing parquet file with the compression option Compression::Lz4Raw, if the input buffer is tiny, the writer fails with error
Compression::Lz4Raw
Error: General("underlying IO error: Compression failed")
e.g.
if we change the following lines
parquet2/tests/it/main.rs
Lines 75 to 78 in f8eb243
"id" => { let expected = vec![4]; let expected = expected.into_iter().map(Some).collect::<Vec<_>>(); Array::Int32(expected)
cargo test int32_lz4 will output
cargo test int32_lz4
---- write::int32_lz4 stdout ---- Error: General("underlying IO error: Compression failed") .....
The text was updated successfully, but these errors were encountered:
Sorry, PR opened in the incorrect repo :(
Sorry, something went wrong.
Closed by #118
No branches or pull requests
When writing parquet file with the compression option
Compression::Lz4Raw
, if the input buffer is tiny, the writer fails with errorError: General("underlying IO error: Compression failed")
e.g.
if we change the following lines
parquet2/tests/it/main.rs
Lines 75 to 78 in f8eb243
to
cargo test int32_lz4
will outputThe text was updated successfully, but these errors were encountered: