()
| 1731 | |
| 1732 | #[test] |
| 1733 | fn test_split_conjunction_owned_or() { |
| 1734 | let expr = col("a").eq(lit(5)).or(col("b")); |
| 1735 | assert_eq!(split_conjunction_owned(expr.clone()), vec![expr]); |
| 1736 | } |
| 1737 | |
| 1738 | #[test] |
| 1739 | fn test_collect_expr() -> Result<()> { |