MCPcopy Create free account
hub / github.com/apache/arrow-rs / length_null_cases_string

Function length_null_cases_string

arrow-string/src/length.rs:345–351  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

343 type OptionStr = Option<&'static str>;
344
345 fn length_null_cases_string() -> Vec<(Vec<OptionStr>, usize, Vec<Option<i32>>)> {
346 vec![(
347 vec![Some("one"), None, Some("three"), Some("four")],
348 4,
349 vec![Some(3), None, Some(5), Some(4)],
350 )]
351 }
352
353 #[test]
354 fn length_null_string() {

Callers 2

length_null_stringFunction · 0.85
length_null_large_stringFunction · 0.85

Calls

no outgoing calls

Tested by 2

length_null_stringFunction · 0.68
length_null_large_stringFunction · 0.68