File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -103,15 +103,15 @@ class ICEBERG_EXPORT TableScan {
103103
104104// / \brief Represents a task to scan a portion of a data file.
105105struct ICEBERG_EXPORT FileScanTask {
106- std::string file_path_ ; // /< Path to the data file.
107- uint64_t start_ ; // /< Start byte offset.
108- uint64_t length_ ; // /< Length in bytes to scan.
109- std::optional<uint64_t > record_count_ ; // /< Optional number of records.
110- DataFile::Content file_content_ ; // /< Type of file content.
111- FileFormatType file_format_ ; // /< Format of the data file.
112- std::shared_ptr<Schema> schema_ ; // /< Projected schema.
113- std::vector<int32_t > field_ids_ ; // /< Field IDs to project.
114- std::shared_ptr<Expression> filter_ ; // /< Filter expression to apply.
106+ std::string file_path ; // /< Path to the data file.
107+ uint64_t start ; // /< Start byte offset.
108+ uint64_t length ; // /< Length in bytes to scan.
109+ std::optional<uint64_t > record_count ; // /< Optional number of records.
110+ DataFile::Content file_content ; // /< Type of file content.
111+ FileFormatType file_format ; // /< Format of the data file.
112+ std::shared_ptr<Schema> schema ; // /< Projected schema.
113+ std::vector<int32_t > field_ids ; // /< Field IDs to project.
114+ std::shared_ptr<Expression> filter ; // /< Filter expression to apply.
115115};
116116
117117} // namespace iceberg
You can’t perform that action at this time.
0 commit comments