eeroel commented on code in PR #37868:
URL: https://github.com/apache/arrow/pull/37868#discussion_r1375251522
##########
cpp/src/arrow/filesystem/filesystem.h:
##########
@@ -60,6 +60,8 @@ struct ARROW_EXPORT FileInfo : public
util::EqualityComparable<FileInfo> {
explicit FileInfo(std::string path, FileType type = FileType::Unknown)
: path_(std::move(path)), type_(type) {}
+ explicit FileInfo(std::string path, int64_t size, FileType type =
FileType::Unknown)
+ : path_(std::move(path)), type_(type), size_(size) {}
Review Comment:
I think this is not relevant for this PR now that I removed the extra
FileSource constructor?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]