| 191 | |
| 192 | protected: |
| 193 | Status SetFileName(const std::string& file_name) { |
| 194 | return ::arrow::internal::PlatformFilename::FromString(file_name).Value(&file_name_); |
| 195 | } |
| 196 | |
| 197 | Status SetFileName(int fd) { |
| 198 | std::stringstream ss; |
nothing calls this directly
no test coverage detected