()
| 1613 | } |
| 1614 | #[test] |
| 1615 | fn test_split_conjunction() { |
| 1616 | let expr = col("a"); |
| 1617 | let result = split_conjunction(&expr); |
| 1618 | assert_eq!(result, vec![&expr]); |
| 1619 | } |
| 1620 | |
| 1621 | #[test] |
| 1622 | fn test_split_conjunction_two() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…