Skip to content

Commit

Permalink
fix: more cloud urls (#11361)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Sep 27, 2023
1 parent 7f8614e commit 9fb8e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ pub(crate) fn finish_reader<R: ArrowReader>(
}

static CLOUD_URL: Lazy<Regex> =
Lazy::new(|| Regex::new(r"^(s3|gs|gs|gcs|file|adbs|az|adl)\:\/\/.+$").unwrap());
Lazy::new(|| Regex::new(r"^(s3|gs|gs|gcs|file|abfs|azure|az|adl)\:\/\/.+$").unwrap());

/// Check if the path is a cloud url.
pub fn is_cloud_url<P: AsRef<Path>>(p: P) -> bool {
Expand Down

0 comments on commit 9fb8e02

Please sign in to comment.