MCPcopy Create free account
hub / github.com/apache/datafusion / test_split_conjunction_or

Function test_split_conjunction_or

datafusion/expr/src/utils.rs:1642–1646  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 5

colFunction · 0.70
litFunction · 0.70
split_conjunctionFunction · 0.70
orMethod · 0.45
eqMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…