Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Nov 18, 2024
1 parent 093b860 commit c19d748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/optimizer/plan_node/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,11 +535,11 @@ pub fn range_to_string(name: &str, range: &(Bound<ScalarImpl>, Bound<ScalarImpl>
format!("{} {} {:?}", name, op, v)
}
(lb, ub) => {
let (u_op, u_v) = ub_to_op_value(ub);
let (l_op, l_v) = lb_to_op_value(lb);
let (u_op, u_v) = ub_to_op_value(ub);
format!(
"{} {} {:?} AND {} {} {:?}",
name, u_op, u_v, name, l_op, l_v
name, l_op, l_v, name, u_op, u_v
)
}
}
Expand Down

0 comments on commit c19d748

Please sign in to comment.