tustvold commented on issue #4047:
URL: https://github.com/apache/arrow-rs/issues/4047#issuecomment-1503149317

   There was some prior discussion on 
https://github.com/apache/arrow-rs/issues/2304
   
   FYI @roeap 
   
   I would not object to providing a
   
   ```
   pub fn parse_url<I>(location: Url, options: I) -> Result<Arc<dyn 
ObjectStore>>
   where I: IntoIterator<Item = (impl AsRef<str>, impl Into<String>)> {
       match location.scheme() {
           "gs" => 
Ok(Arc::new(GoogleCloudStorageBuilder::from_env().with_url(url).try_with_options(options).build()?)),
           "s3" => ...
       }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to