This is an automated email from the ASF dual-hosted git repository.
zivanfi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git
The following commit(s) were added to refs/heads/master by this push:
new 8c9851c PARQUET-1242: parquet.thrift refers to wrong releases for the
new compressions
8c9851c is described below
commit 8c9851cf1082a5f45460c21e8e2b87e968694ba1
Author: Zoltan Ivanfi <[email protected]>
AuthorDate: Fri Mar 23 14:55:52 2018 +0100
PARQUET-1242: parquet.thrift refers to wrong releases for the new
compressions
Author: Zoltan Ivanfi <[email protected]>
Closes #87 from zivanfi/PARQUET-1242 and squashes the following commits:
33cb102 [Zoltan Ivanfi] PARQUET-1242: parquet.thrift refers to wrong
releases for the new compressions
---
src/main/thrift/parquet.thrift | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index 4d2e700..d0c4c31 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -452,7 +452,7 @@ enum Encoding {
/**
* Supported compression algorithms.
*
- * Codecs added in 2.3.2 can be read by readers based on 2.3.2 and later.
+ * Codecs added in 2.4 can be read by readers based on 2.4 and later.
* Codec support may vary between readers based on the format version and
* libraries available at runtime. Gzip, Snappy, and LZ4 codecs are
* widely available, while Zstd and Brotli require additional libraries.
@@ -462,9 +462,9 @@ enum CompressionCodec {
SNAPPY = 1;
GZIP = 2;
LZO = 3;
- BROTLI = 4; // Added in 2.3.2
- LZ4 = 5; // Added in 2.3.2
- ZSTD = 6; // Added in 2.3.2
+ BROTLI = 4; // Added in 2.4
+ LZ4 = 5; // Added in 2.4
+ ZSTD = 6; // Added in 2.4
}
enum PageType {
--
To stop receiving notification emails like this one, please contact
[email protected].