Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 8f08b4b

Browse files
committed
fix clippy
Signed-off-by: Yuchen Liang <[email protected]>
1 parent dede91b commit 8f08b4b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

optd-datafusion-repr/src/rules/filter_pushdown.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@ fn apply_filter_agg_transpose(
450450
mod tests {
451451
use std::sync::Arc;
452452

453+
use optd_core::nodes::Value;
454+
453455
use super::*;
454456
use crate::plan_nodes::{BinOpPred, BinOpType, ConstantPred, LogicalScan};
455457
use crate::testing::new_test_optimizer;
@@ -586,7 +588,7 @@ mod tests {
586588
assert_eq!(col_8.index(), 8);
587589
let constant_true =
588590
ConstantPred::from_pred_node(join_conds.children()[1].clone()).unwrap();
589-
assert_eq!(constant_true.value().as_bool(), true);
591+
assert_eq!(constant_true.value(), Value::Bool(true));
590592
}
591593

592594
{

0 commit comments

Comments
 (0)