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

Function string_set_one_null

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

Source from the content-addressed store, hash-verified

628
629 #[test]
630 fn string_set_one_null() {
631 let mut set = ArrowBytesSet::<i32>::new(OutputType::Utf8);
632 let array: ArrayRef = Arc::new(StringArray::new_null(1));
633 set.insert(&array);
634 assert_eq!(set.len(), 1);
635 assert_eq!(set.non_null_len(), 0);
636 assert_set(set, &[None]);
637 }
638
639 #[test]
640 fn string_set_many_null() {

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…