Hi, Nathan!
Thanks for your reply. If you need anything else, I can provide more information to help debug the problem.
Regards,
Ivan.
19.11.2019, 08:04, "Nathan Hartman" <hartman.nat...@gmail.com>:
On Mon, Nov 18, 2019 at 4:53 AM Иван Селин <ivanse...@yandex-team.ru> wrote:Hi!I think I've found a bug in subversion client. Setup is as follows:1. Create directory with a file in it — commit 12. Replace directory with other file — commit 23. Call "svn info dir/file@1" — it should give information about dir/file at revision 1, but it fails saying that "dir" is a file at latest revision:svn: E160016: Failure opening '/dir' in revision 2svn: E160016: '/dir' is not a directory in filesystem '0bc899d5-c233-4fed-98a3-8705ddfc96c4'But directory can be listed, it shows the file, and file can be listed too:$ svn info file:///tmp/subversion-info-on-replaced-file/repo/dir@1Path: dirURL: file:///tmp/subversion-info-on-replaced-file/repo/dirRelative URL: ^/dirRepository Root: file:///tmp/subversion-info-on-replaced-file/repoRepository UUID: 0bc899d5-c233-4fed-98a3-8705ddfc96c4Revision: 1Node Kind: directoryLast Changed Author: ivanselinLast Changed Rev: 1Last Changed Date: 2019-11-18 11:38:16 +0300 (Пн, 18 ноя 2019)$ svn list file:///tmp/subversion-info-on-replaced-file/repo/dir@1file$ svn list file:///tmp/subversion-info-on-replaced-file/repo/dir/file@1fileSo, only "info" does not work. It seems that it's performing directory check against HEAD instead of provided peg revision. Adding --revision key changes nothing. This is trunk svn (1.14.0-dev, r1869957), svn 1.9.7 does not have this bug, it correctly shows info.Sample reproduction script attached.Hello Ivan,Thank you for reporting this.I performed similar steps and I am seeing the same result, namely:$ svn info "$repo/dir/file"@1svn: E160016: Failure opening '/dir' in revision 2svn: E160016: '/dir' is not a directory in filesystem '(snip)'You asked for peg revision 1, it's looking in revision 2.I'm investigating...Thanks again for reporting this.Nathan