-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve main api doc page, move avro_to_arrow
to datasource
#6564
Conversation
@@ -412,7 +413,6 @@ pub const DATAFUSION_VERSION: &str = env!("CARGO_PKG_VERSION"); | |||
extern crate core; | |||
extern crate sqlparser; | |||
|
|||
pub mod avro_to_arrow; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically this is a breaking API change, but I don't expect it to be a large impact as I think the use of avro_to_arrow
is likely small.
If it turns out others are using it more extensively, I think we should contemplate moving it to its own crate (or maybe upstream into arrow-rs)
d0f3e63
to
514113b
Compare
(I am in parallel working to remove |
avro_to_arrow
to datasource
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like mostly doc fixes 👍
Thanks @avantgardnerio ! |
…he#6564) * Improve main api doc page * fix doc examples * fmt
Which issue does this PR close?
Related to #3058
Rationale for this change
The main docs landing page is somewhat messy and inconsistent. I would like this to be better when users try to use DataFusion
What changes are included in this PR?
Clean up docs and move the
avro_to_arrow
module intodatasource
as it is somewhat specializedAfter changes:
Are these changes tested?
Are there any user-facing changes?