tustvold commented on code in PR #604:
URL:
https://github.com/apache/arrow-rs-object-store/pull/604#discussion_r2707307070
##########
src/parse.rs:
##########
@@ -299,11 +300,35 @@ mod tests {
(ObjectStoreScheme::MicrosoftAzure, "path"),
),
(
- "az://account/container",
- (ObjectStoreScheme::MicrosoftAzure, ""),
+ "az://container/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "az://container@account/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "abfs://container/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "abfs://container@account/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "abfss://container/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "abfss://container@account/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
+ ),
+ (
+ "adl://container/path",
+ (ObjectStoreScheme::MicrosoftAzure, "path"),
),
(
- "az://account/container/path",
Review Comment:
It is here
https://github.com/apache/arrow-rs-object-store/pull/604#discussion_r2691944687
Just renamed
--
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]