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
7 changes: 6 additions & 1 deletion src/main/thrift/parquet.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,12 @@ struct ColumnChunk {
**/
1: optional string file_path

/** Byte offset in file_path to the ColumnMetaData **/
/** Byte offset in file_path to the ColumnMetaData.
Note: most writers include the ColumnMetadata inline (via meta_data).
While the presence of this field implies that ColumnMetaData can be
stored separately in the file, this is is not supported by many implementations
which assume meta_data is set.
**/
2: required i64 file_offset

/** Column metadata for this chunk. This is the same content as what is at
Expand Down