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

Function string_set_many_null

datafusion/physical-expr-common/src/binary_map.rs:640–647  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

638
639 #[test]
640 fn string_set_many_null() {
641 let mut set = ArrowBytesSet::<i32>::new(OutputType::Utf8);
642 let array: ArrayRef = Arc::new(StringArray::new_null(11));
643 set.insert(&array);
644 assert_eq!(set.len(), 1);
645 assert_eq!(set.non_null_len(), 0);
646 assert_set(set, &[None]);
647 }
648
649 #[test]
650 fn string_set_basic_i32() {

Callers

nothing calls this directly

Calls 3

newFunction · 0.85
assert_setFunction · 0.70
insertMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…