Skip to content

Commit cb29d45

Browse files
committed
Fix clippy approx_constant warning in Float32 test
1 parent 73a54c4 commit cb29d45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/physical-plan/src/filter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2532,7 +2532,7 @@ mod tests {
25322532
let predicate = Arc::new(BinaryExpr::new(
25332533
Arc::new(Column::new("a", 0)),
25342534
Operator::Eq,
2535-
Arc::new(Literal::new(ScalarValue::Float32(Some(3.14)))),
2535+
Arc::new(Literal::new(ScalarValue::Float32(Some(42.5)))),
25362536
));
25372537
let filter: Arc<dyn ExecutionPlan> =
25382538
Arc::new(FilterExec::try_new(predicate, input)?);

0 commit comments

Comments
 (0)