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

Function mixed_empty_and_conflicting

datafusion/expr/src/expr.rs:4336–4343  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4334
4335 #[test]
4336 fn mixed_empty_and_conflicting() {
4337 let m1 = HashMap::from([("key".into(), "a".into())]);
4338 let m2 = HashMap::new();
4339 let m3 = HashMap::from([("key".into(), "b".into())]);
4340 let result = intersect_metadata_for_union([&m1, &m2, &m3]);
4341 // m2 is skipped; m1 and m3 conflict → dropped
4342 assert!(result.is_empty());
4343 }
4344
4345 #[test]
4346 fn no_inputs() {

Callers

nothing calls this directly

Calls 3

newFunction · 0.85
intoMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…