(url: &Url)
| 312 | } |
| 313 | |
| 314 | fn get_bucket_name(url: &Url) -> Result<&str> { |
| 315 | url.host_str().ok_or_else(|| { |
| 316 | exec_datafusion_err!("Not able to parse bucket name from url: {}", url.as_str()) |
| 317 | }) |
| 318 | } |
| 319 | |
| 320 | /// This struct encapsulates AWS options one uses when setting up object storage. |
| 321 | #[derive(Default, Debug, Clone)] |
no outgoing calls
no test coverage detected
searching dependent graphs…