tustvold commented on PR #2207:
URL: https://github.com/apache/arrow-rs/pull/2207#issuecomment-1201357108
Yes, that is expected, as determined above:
* Symlinks outside the tree such as "file_ln_outside.txt" are silently
ignored
* Symlinks within the tree such as "file_ln.txt" are deduplicated
In order to see a difference you need to construct a symlink setup that
doesn't meet either of these properties.
For example.
```
$ tree -a /tmp/object_store/
/tmp/object_store/
├── a.txt
└── foo
└── a.txt -> ../a.txt
```
With this setup if you list without a prefix you will get `["a.txt"]`, if
you list with a prefix of `"foo"` you will also get back `["a.txt"]` on master,
but nothing on this PR.
That said there is a bug I've just realised, which I'll fix up now, but the
behaviour you describe above is "expected". It's incredibly counter-intuitive,
but that is part of why I want to fix this :laughing:
--
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]