You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by ga...@apache.org on 2019/12/11 10:40:56 UTC

[parquet-format] branch master updated: PARQUET-1708: Fix Thrift compiler warning (#156)

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

gabor 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 7390aa1  PARQUET-1708: Fix Thrift compiler warning (#156)
7390aa1 is described below

commit 7390aa18ac855622f6d5cb737e9628eecd7565fd
Author: Jiajia Li <ji...@intel.com>
AuthorDate: Wed Dec 11 18:40:47 2019 +0800

    PARQUET-1708: Fix Thrift compiler warning (#156)
---
 src/main/thrift/parquet.thrift | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index 0c1a8ea..02139c1 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -292,7 +292,7 @@ struct TimeType {
  * Allowed for physical types: INT32, INT64
  */
 struct IntType {
-  1: required byte bitWidth
+  1: required i8 bitWidth
   2: required bool isSigned
 }