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

Function print_nulls

datafusion/functions-aggregate/src/array_agg.rs:1591–1595  ·  view source on GitHub ↗
(sort: Vec<Option<String>>)

Source from the content-addressed store, hash-verified

1589 }
1590
1591 fn print_nulls(sort: Vec<Option<String>>) -> Vec<String> {
1592 sort.into_iter()
1593 .map(|v| v.unwrap_or_else(|| "NULL".to_string()))
1594 .collect()
1595 }
1596
1597 fn string_list_data<'a>(data: impl IntoIterator<Item = Vec<&'a str>>) -> ArrayRef {
1598 let mut builder = ListBuilder::new(StringBuilder::new());

Calls 4

collectMethod · 0.80
mapMethod · 0.45
into_iterMethod · 0.45
to_stringMethod · 0.45

Used in the wild real call sites across dependent graphs

searching dependent graphs…