Zoltan Ivanfi created PARQUET-1242:
--------------------------------------
Summary: parquet.thrift refers to wrong releases for the new
compressions
Key: PARQUET-1242
URL: https://issues.apache.org/jira/browse/PARQUET-1242
Project: Parquet
Issue Type: Bug
Reporter: Zoltan Ivanfi
Assignee: Zoltan Ivanfi
parquet.thrift contains the following:
{{/**}}
{{ * Supported compression algorithms.}}
{{ *}}
{{ * Codecs added in {color:red}2.3.2{color} can be read by readers based on
{color:red}2.3.2{color} 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.}}
{{ */}}
{{enum CompressionCodec {}}
{{ UNCOMPRESSED = 0;}}
{{ SNAPPY = 1;}}
{{ GZIP = 2;}}
{{ LZO = 3;}}
{{ BROTLI = 4; // Added in {color:red}2.3.2{color}}}
{{ LZ4 = 5; // Added in {color:red}2.3.2{color}}}
{{ ZSTD = 6; // Added in {color:red}2.3.2{color}}}
{{}}}
In reality, there was no 2.3.2 release. These compression codecs were added in
version 2.4.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)