-
Notifications
You must be signed in to change notification settings - Fork 804
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
chore: add docs, part of #37 #6453
Conversation
@alamb please have a look. The only culprits that remain now are parquet and arrow-ipc, with over 200 & 850 warnings each, so they'll take some time. But we're in the right direction. |
Okay turns out these warnings were not emitted when tested using clippy. I'll fix these soon and circle back on this. |
743da3d
to
3b5b3b0
Compare
@alamb I'm not sure what to do about vendored code. Some guidance/help needed here. |
3b5b3b0
to
6361835
Compare
6361835
to
064f973
Compare
Since this code is auto generated, I think we should disable any clippy lints that are failing for it rather than try to add documentation |
- add pragma `#![warn(missing_docs)]` to the following - `arrow-flight` - `arrow-ipc` - `arrow-integration-test` - `arrow-integration-testing` - `object_store` - also document the caveat with using level 10 GZIP compression in parquet. See apache#6282.
064f973
to
618c775
Compare
Weird that I missed this. I've been doing this for every autogenerated file so far. Somehow I thought the error was coming from running |
@alamb the PR is updated and ready for review. |
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.
Thank you so much @ByteBaker -- this PR is almost perfect. I think the only thing that needs to be fixed is the potential panic in log_metadata
.
arrow-integration-testing/src/flight_server_scenarios/integration_test.rs
Show resolved
Hide resolved
The changes have been incorporated. Please review. |
The warning is due to a spurious network issue. The same test has passed in previous run. I think we can merge this, or maybe run the failed step again just be extra sure. |
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.
Thank you @ByteBaker ❤️
Epic -- thanks again @ByteBaker |
@alamb I'm just happy to make Arrow better! 😅 One more PR and it'll be complete, end to end. |
We appreciate it very much |
add pragma
#![warn(missing_docs)]
to the followingarrow-flight
arrow-ipc
arrow-integration-test
arrow-integration-testing
object_store
add documentation to remove any warnings thus generated
also document the caveat with using level 10 GZIP compression in Parquet. Closes What is the highest compression level in gzip? #6282.