| 732 | Location::~Location() = default; |
| 733 | |
| 734 | arrow::Result<Location> Location::Parse(const std::string& uri_string) { |
| 735 | Location location; |
| 736 | RETURN_NOT_OK(location.uri_->Parse(uri_string)); |
| 737 | return location; |
| 738 | } |
| 739 | |
| 740 | const Location& Location::ReuseConnection() { |
| 741 | static Location kFallback = |
no outgoing calls