| 184 | |
| 185 | protected: |
| 186 | Status SetFileName(const std::string& file_name) { |
| 187 | return ::arrow::internal::PlatformFilename::FromString(file_name).Value(&file_name_); |
| 188 | } |
| 189 | |
| 190 | Status SetFileName(int fd) { |
| 191 | std::stringstream ss; |
nothing calls this directly
no test coverage detected