thomasfrederikhoeck commented on PR #5830: URL: https://github.com/apache/arrow-rs/pull/5830#issuecomment-2185267838
@hesampakdaman I just tested with below and it doesn't appear like it is handeling the `:` in the drive correctly which also are changes but shouldn't. This results in the file being created in a relative position with the name as `C:\projects\delta\pathtester\C%3A\Users\tfh\AppData\Local\Temp\.tmpwqJ9tp\file%3Aname.parquet`  The script I ran was ```rust use object_store::path::{Path}; use tempfile::{TempDir}; use object_store::local::LocalFileSystem; use object_store::ObjectStore; use bytes::Bytes; #[tokio::main] async fn main() { let root = TempDir::new().unwrap(); let integration = LocalFileSystem::new_with_prefix(root.path()).unwrap(); let path = Path::parse("file%3Aname.parquet").unwrap(); let location = Path::parse("file:name.parquet").unwrap(); integration.put(&location, "test".into()).await.unwrap(); let result = integration .get(&location) .await .unwrap() .bytes() .await .unwrap(); assert_eq!(result, Bytes::from("test")); } ``` -- 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]
