Repository: parquet-format
Updated Branches:
refs/heads/master 6a1664b10 -> 66a5a7b98
PARQUET-609: Add Brotli to parquet's thrift definition
Author: Ryan Blue <blue@apache.org>
Closes #40 from rdblue/PARQUET-609-add-brotli and squashes the following commits:
061dcbc [Ryan Blue] PARQUET-609: Add Brotli compression to the format.
4eb1ff0 [Ryan Blue] PARQUET-608: Add thrift.executable property.
Project: http://git-wip-us.apache.org/repos/asf/parquet-format/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-format/commit/66a5a7b9
Tree: http://git-wip-us.apache.org/repos/asf/parquet-format/tree/66a5a7b9
Diff: http://git-wip-us.apache.org/repos/asf/parquet-format/diff/66a5a7b9
Branch: refs/heads/master
Commit: 66a5a7b982e291e06afb1da7ffe9da211318caba
Parents: 6a1664b
Author: Ryan Blue <blue@apache.org>
Authored: Mon Jul 11 11:00:45 2016 -0700
Committer: Ryan Blue <blue@apache.org>
Committed: Mon Jul 11 11:00:45 2016 -0700
----------------------------------------------------------------------
pom.xml | 2 ++
src/main/thrift/parquet.thrift | 1 +
2 files changed, 3 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/parquet-format/blob/66a5a7b9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d5b3b60..be1c184 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,6 +86,7 @@
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<shade.prefix>shaded.parquet</shade.prefix>
+ <thrift.executable>thrift</thrift.executable>
</properties>
<build>
@@ -97,6 +98,7 @@
<version>0.1.11</version>
<configuration>
<thriftSourceRoot>src/main/thrift</thriftSourceRoot>
+ <thriftExecutable>${thrift.executable}</thriftExecutable>
</configuration>
<executions>
<execution>
http://git-wip-us.apache.org/repos/asf/parquet-format/blob/66a5a7b9/src/main/thrift/parquet.thrift
----------------------------------------------------------------------
diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index d1b305e..ac4d50e 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -322,6 +322,7 @@ enum CompressionCodec {
SNAPPY = 1;
GZIP = 2;
LZO = 3;
+ BROTLI = 4;
}
enum PageType {
|