Skip to content

Commit

Permalink
Clarify num-nulls handling
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Aug 16, 2024
1 parent 5a5c894 commit dbfe60f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/thrift/parquet.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,11 @@ struct Statistics {
*/
1: optional binary max;
2: optional binary min;
/** count of null value in the column */
/**
* count of null value in the column
*
* Writers should write this field even if it is zero or in non-null columns.
*/
3: optional i64 null_count;
/** count of distinct values occurring */
4: optional i64 distinct_count;
Expand Down

0 comments on commit dbfe60f

Please sign in to comment.