Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PARQUET-2139: Clarify ColumnChunk::file_offset is not used #439

Closed
wants to merge 1 commit into from
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