Skip to content

Commit

Permalink
copy file-offset comment from arrow-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mapleFU committed Aug 3, 2024
1 parent 37d1af3 commit 57f674d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cpp/src/parquet/metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,12 @@ class PARQUET_EXPORT ColumnChunkMetaData {

bool Equals(const ColumnChunkMetaData& other) const;

// column chunk
// Byte offset of `ColumnMetaData` in `file_path()`.
//
// Note that the meaning of this field has been inconsistent between implementations
// so its use has since been deprecated in the Parquet specification. Moder
// implementations will set this to `0` to indicate that the `ColumnMetaData` is solely
// contained in the `ColumnChunk` struct.
int64_t file_offset() const;

// parameter is only used when a dataset is spread across multiple files
Expand Down

0 comments on commit 57f674d

Please sign in to comment.