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 2020/05/14 09:20:50 UTC

[parquet-format] branch master updated: PARQUET-1862: fix comment mistake of DataPageHeaderV2 (#159)

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 232e23a  PARQUET-1862: fix comment mistake of DataPageHeaderV2 (#159)
232e23a is described below

commit 232e23a68ab45be0db2cca5d0991613c9f350f8c
Author: Liam <li...@gmail.com>
AuthorDate: Thu May 14 17:20:42 2020 +0800

    PARQUET-1862: fix comment mistake of DataPageHeaderV2 (#159)
    
    Statistics in DataPageHeaderV2 should be about the page, not column chunk.
---
 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 02139c1..b60141b 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -566,7 +566,7 @@ struct DataPageHeaderV2 {
   If missing it is considered compressed */
   7: optional bool is_compressed = 1;
 
-  /** optional statistics for this column chunk */
+  /** optional statistics for the data in this page **/
   8: optional Statistics statistics;
 }