zeroshade commented on code in PR #3099: URL: https://github.com/apache/arrow-adbc/pull/3099#discussion_r2195925756
########## rust/core/src/driver_manager.rs: ########## @@ -161,8 +170,94 @@ struct ManagedDriverInner { _library: Option<libloading::Library>, } +#[derive(Default)] +struct DriverInfo { + manifest_file: std::path::PathBuf, Review Comment: mostly just for logging so that we can know where a particular `DriverInfo` came from. In theory it wouldn't be bad to leave it out, it would just mean that if we use `DriverInfo` elsewhere we'd likely have to add it back. I'll update this to remove the path from the `DriverInfo` object for now then. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org