Skip to content

Commit

Permalink
use lz4 raw
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Apr 19, 2022
1 parent a002017 commit c0f4ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ impl PyDataFrame {
"gzip" => ParquetCompression::Gzip,
"lzo" => ParquetCompression::Lzo,
"brotli" => ParquetCompression::Brotli,
"lz4" => ParquetCompression::Lz4,
"lz4" => ParquetCompression::Lz4Raw,
"zstd" => ParquetCompression::Zstd,
s => return Err(PyPolarsErr::Other(format!("compression {} not supported", s)).into()),
};
Expand Down

0 comments on commit c0f4ee3

Please sign in to comment.