davidlghellin opened a new pull request, #21043:
URL: https://github.com/apache/datafusion/pull/21043
## Which issue does this PR close?
NA
## Rationale for this change
Three files in `datafusion-spark` import from `datafusion::logical_expr`
instead of `datafusion_expr` directly. This compiles fine in the full workspace
but fails when building the crate in isolation (`cargo clippy -p
datafusion-spark `).
## What changes are included in this PR?
Replaced `use datafusion::logical_expr::{...}` with `use
datafusion_expr::{...}` in:
- `datafusion/spark/src/function/bitmap/bitmap_bit_position.rs`
- `datafusion/spark/src/function/bitmap/bitmap_bucket_number.rs`
- `datafusion/spark/src/function/math/bin.rs`
No logic changes — imports only.
## Are these changes tested?
NA
## Are there any user-facing changes?
NA
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]