You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by vi...@apache.org on 2022/10/07 17:36:11 UTC

[arrow-rs] branch master updated: parquet: Add `snap` option to README (#2847)

This is an automated email from the ASF dual-hosted git repository.

viirya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 5cf46d43e parquet: Add `snap` option to README (#2847)
5cf46d43e is described below

commit 5cf46d43e8ede2ff3f291de85a27fce25ff2e9c4
Author: Stanislav Lukeš <gi...@exyi.cz>
AuthorDate: Fri Oct 7 17:36:05 2022 +0000

    parquet: Add `snap` option to README (#2847)
    
    I tried using parquet with `default-features = false` (and with some options explicitly enabled), but it didn't support snappy compression. Turns out there is an undocumented option for it.
---
 parquet/README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/parquet/README.md b/parquet/README.md
index 689a664b6..96a34d7c2 100644
--- a/parquet/README.md
+++ b/parquet/README.md
@@ -47,6 +47,7 @@ The `parquet` crate provides the following features which may be enabled in your
 - `flate2` (default) - support for parquet using `gzip` compression
 - `lz4` (default) - support for parquet using `lz4` compression
 - `zstd` (default) - support for parquet using `zstd` compression
+- `snap` (default) - support for parquet using `snappy` compression
 - `cli` - parquet [CLI tools](https://github.com/apache/arrow-rs/tree/master/parquet/src/bin)
 - `experimental` - Experimental APIs which may change, even between minor releases