Skip to content

Commit d71c26a

Browse files
committed
fix lint
1 parent 6a2cb74 commit d71c26a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/iceberg/table_scan.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ class ICEBERG_EXPORT TableScan {
103103

104104
/// \brief Represents a task to scan a portion of a data file.
105105
struct 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

0 commit comments

Comments
 (0)