tustvold commented on issue #8068:
URL:
https://github.com/apache/arrow-datafusion/issues/8068#issuecomment-1801653623
> data.parquet resolves to absolute path during parsing
All paths eventually will get resolved to an absolute path, correct, this is
how filesystems work. However, if you create a store with a prefix the URL you
specify can contain a path relative to this prefix.
So if you used `LocalFileSystem::new_with_prefix("/home/foo/my_root")` the
URL `file:///bar.parquet` would resolve to `/home/foo/my_root/bar.parquet`.
Perhaps you could explain what it is you are trying to achieve here?
--
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]