()
| 1620 | |
| 1621 | #[test] |
| 1622 | fn test_split_conjunction_two() { |
| 1623 | let expr = col("a").eq(lit(5)).and(col("b")); |
| 1624 | let expr1 = col("a").eq(lit(5)); |
| 1625 | let expr2 = col("b"); |
| 1626 | |
| 1627 | let result = split_conjunction(&expr); |
| 1628 | assert_eq!(result, vec![&expr1, &expr2]); |
| 1629 | } |
| 1630 | |
| 1631 | #[test] |
| 1632 | fn test_split_conjunction_alias() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…