We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
datafusion-common
After #7745, the tests in 'datafusion-common' didn't work.
cargo test --package datafusion-common
Pass all tests
Related
parquet
#cfg(feature = "parquet")
The text was updated successfully, but these errors were encountered:
I think this would be resolved by adding parquet into default feature of datafusion-common package.
[features] default = ["parquet"]
I'm thoughtless to test every package individually. Maybe we should add some CI tests for packages?
Sorry, something went wrong.
I think this would be resolved by adding parquet into default feature of datafusion-common package. [features] default = ["parquet"] I'm thoughtless to test every package individually. Maybe we should add some CI tests for packages?
I think so, it would be nice to test for packages. But I am not sure if it is necessary.
Perhaps we can extend this check:
https://github.com/apache/arrow-datafusion/blob/main/.github/workflows/rust.yml#L69
Successfully merging a pull request may close this issue.
Describe the bug
After #7745, the tests in 'datafusion-common' didn't work.
To Reproduce
cargo test --package datafusion-common
Expected behavior
Pass all tests
Additional context
Related
parquet
feature flag, enabled by default, and make parquet conditional #7745#cfg(feature = "parquet")
in tests #7930#cfg(feature = "parquet")
#7929The text was updated successfully, but these errors were encountered: