alamb opened a new issue, #6648: URL: https://github.com/apache/arrow-datafusion/issues/6648
### Describe the bug Something is wrong with the searching function on [doc.rs](http://doc.rs/) for [datafusion](https://docs.rs/datafusion/26.0.0/datafusion). ### To Reproduce Specifically, when one searches for `SqlToRel` like this: https://docs.rs/datafusion/26.0.0/datafusion/?search=sqltorel Nothing comes up: <img width="1320" alt="Screenshot 2023-06-12 at 6 55 21 AM" src="https://github.com/apache/arrow-datafusion/assets/490673/51f5ac90-534b-4f55-b8ea-8434c2f3fbe3"> ### Expected behavior However, it is definitely documented in https://docs.rs/datafusion-sql/26.0.0/datafusion_sql/planner/struct.SqlToRel.html (though note that is a different crate, `datafusion_sql` not `datafusion` ### Additional context @dadepo reported this on slack I think it is a function of the fact that datafusion is broken into several different crates and unless an item like SqlToRel is re-imported into datafusion directly it doesn't show up in the rustdocs I believe arrow-rs uses `pub use submodule::*` extensively to work around this problem, for example: https://docs.rs/arrow/latest/src/arrow/compute/mod.rs.html#18-38 -- 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]
