Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/thrift/parquet.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ enum FieldRepetitionType {
* All fields are optional.
*/
struct Statistics {
/** min and max value of the column, encoded in PLAIN encoding */
/** min and max value of the column, encoded in PLAIN encoding. However, BYTE_ARRAY
* columns store the values as strings directly, without prefixing them with their
* length. BOOLEAN columns store the values using a single byte. */
1: optional binary max;
2: optional binary min;
/** count of null value in the column */
Expand Down