()
| 1640 | |
| 1641 | #[test] |
| 1642 | fn test_split_conjunction_or() { |
| 1643 | let expr = col("a").eq(lit(5)).or(col("b")); |
| 1644 | let result = split_conjunction(&expr); |
| 1645 | assert_eq!(result, vec![&expr]); |
| 1646 | } |
| 1647 | |
| 1648 | #[test] |
| 1649 | fn test_split_binary_owned() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…