From 9fb8e02a9f9f84692d6817d847ddb770398ad2a6 Mon Sep 17 00:00:00 2001 From: Ritchie Vink Date: Wed, 27 Sep 2023 16:28:02 +0200 Subject: [PATCH] fix: more cloud urls (#11361) --- crates/polars-io/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/polars-io/src/lib.rs b/crates/polars-io/src/lib.rs index f5e928cfef9f..28c2b3c8a1d1 100644 --- a/crates/polars-io/src/lib.rs +++ b/crates/polars-io/src/lib.rs @@ -165,7 +165,7 @@ pub(crate) fn finish_reader( } static CLOUD_URL: Lazy = - 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: P) -> bool {