Repository: parquet-format
Updated Branches:
  refs/heads/master b9443d9fa -> e127c3f7f


PARQUET-1050 fix the comments mistake of struct DataPageHeaderV2

Author: LynnYuan <yuanxiaol...@inspur.com>

Closes #58 from LynnYuanInspur/lynn and squashes the following commits:

2001d05 [LynnYuan] PARQUET-1050 fix the comments mistake of struct 
DataPageHeaderV2


Project: http://git-wip-us.apache.org/repos/asf/parquet-format/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-format/commit/e127c3f7
Tree: http://git-wip-us.apache.org/repos/asf/parquet-format/tree/e127c3f7
Diff: http://git-wip-us.apache.org/repos/asf/parquet-format/diff/e127c3f7

Branch: refs/heads/master
Commit: e127c3f7f0587a78a5d43749de1dcc1427e5bcb2
Parents: b9443d9
Author: LynnYuan <yuanxiaol...@inspur.com>
Authored: Fri Oct 6 16:54:00 2017 -0700
Committer: Ryan Blue <b...@apache.org>
Committed: Fri Oct 6 16:54:00 2017 -0700

----------------------------------------------------------------------
 src/main/thrift/parquet.thrift | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-format/blob/e127c3f7/src/main/thrift/parquet.thrift
----------------------------------------------------------------------
diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index 3c51639..d881c74 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -409,9 +409,9 @@ struct DataPageHeaderV2 {
 
   // repetition levels and definition levels are always using RLE (without 
size in it)
 
-  /** length of the repetition levels */
-  5: required i32 definition_levels_byte_length;
   /** length of the definition levels */
+  5: required i32 definition_levels_byte_length;
+  /** length of the repetition levels */
   6: required i32 repetition_levels_byte_length;
 
   /**  whether the values are compressed.

Reply via email to