(left: Expr, right: Expr)
| 5737 | } |
| 5738 | |
| 5739 | fn is_distinct_from(left: Expr, right: Expr) -> Expr { |
| 5740 | Expr::BinaryExpr(BinaryExpr::new( |
| 5741 | Box::new(left), |
| 5742 | Operator::IsDistinctFrom, |
| 5743 | Box::new(right), |
| 5744 | )) |
| 5745 | } |
| 5746 | |
| 5747 | fn test_build_predicate_expression( |
| 5748 | expr: &Expr, |
searching dependent graphs…