etseidl commented on issue #8443: URL: https://github.com/apache/arrow-rs/issues/8443#issuecomment-3335826129
I believe the issue is [this](https://github.com/apache/arrow-rs/blob/f73928439e75a6d0594bac81b12637a10fb4336b/parquet/src/arrow/mod.rs#L377) line. The paths are converted to single strings, and `starts_with` is used to find common roots. We should probably keep the paths as `Vec<&str>` and compare each node. I don't think this code is performance critical so a slower check should be ok. -- 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]
