| 226 | LocalFileSystemOptions LocalFileSystemOptions::Defaults() { return {}; } |
| 227 | |
| 228 | bool LocalFileSystemOptions::Equals(const LocalFileSystemOptions& other) const { |
| 229 | return use_mmap == other.use_mmap && directory_readahead == other.directory_readahead && |
| 230 | file_info_batch_size == other.file_info_batch_size; |
| 231 | } |
| 232 | |
| 233 | Result<LocalFileSystemOptions> LocalFileSystemOptions::FromUri( |
| 234 | const ::arrow::util::Uri& uri, std::string* out_path) { |