Skip to content

Commit

Permalink
PARQUET-2042: Add support for unwrapping common Protobuf wrappers and…
Browse files Browse the repository at this point in the history
… logical Timestamps, Date, TimeOfDay (#900)

Co-authored-by: Michael Wong <[email protected]>
  • Loading branch information
mwong38 and Michael Wong authored Nov 27, 2023
1 parent 452c94d commit c8487c7
Show file tree
Hide file tree
Showing 8 changed files with 876 additions and 41 deletions.
12 changes: 12 additions & 0 deletions parquet-protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<properties>
<elephant-bird.version>4.4</elephant-bird.version>
<protobuf.version>3.25.1</protobuf.version>
<common-protos.version>2.28.0</common-protos.version> <!-- make sure it's compatible with protobuf.version -->
<truth-proto-extension.version>1.1.5</truth-proto-extension.version>
</properties>

Expand Down Expand Up @@ -67,6 +68,16 @@
<artifactId>protobuf-java</artifactId>
<version>${protobuf.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>${protobuf.version}</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
<version>${common-protos.version}</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-common</artifactId>
Expand Down Expand Up @@ -191,6 +202,7 @@
</goals>
<configuration>
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}</protocArtifact>
<includeMavenTypes>direct</includeMavenTypes>
<addSources>test</addSources>
<addProtoSources>all</addProtoSources>
<includeMavenTypes>direct</includeMavenTypes>
Expand Down
Loading

0 comments on commit c8487c7

Please sign in to comment.