Skip to content

Commit 4c3e3c1

Browse files
authored
Fix fmt after logical conflict (#19208)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #. ## Rationale for this change `cargo fmt` is failing on main. Example https://github.com/apache/datafusion/actions/runs/20027361509/job/57427769604 I believe it is a logical conflict between: - #19091 - #19130 ## What changes are included in this PR? Ran `cargo fmt` and committed the result ## Are these changes tested? <!-- We typically require tests for all PRs in order to: 1. Prevent the code from being accidentally broken by subsequent changes 2. Serve as another way to document the expected behavior of the code If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? --> ## Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. -->
1 parent dd35f7c commit 4c3e3c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/src/simplifier/const_evaluator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ use datafusion_common::{Result, ScalarValue};
2727
use datafusion_expr_common::columnar_value::ColumnarValue;
2828
use datafusion_physical_expr_common::physical_expr::is_volatile;
2929

30-
use crate::expressions::{Column, Literal};
3130
use crate::PhysicalExpr;
31+
use crate::expressions::{Column, Literal};
3232

3333
/// Simplify expressions that consist only of literals by evaluating them.
3434
///

0 commit comments

Comments
 (0)