| 72 | } |
| 73 | |
| 74 | Result<std::shared_ptr<FileSystem>> MakeFileSystem() { |
| 75 | ARROW_ASSIGN_OR_RAISE(auto fs, MakeRootFileSystem()); |
| 76 | return std::make_shared<SubTreeFileSystem>(FLAGS_bucket, fs); |
| 77 | } |
| 78 | |
| 79 | void PrintError(const std::string& context_msg, const Status& st) { |
| 80 | if (FLAGS_verbose) { |
no outgoing calls
no test coverage detected