pub fn array_into_list_array_nullable(arr: ArrayRef) -> ListArray
Array Utils Wrap an array into a single element ListArray. For example [1, 2, 3] would be converted into [[1, 2, 3]] The field in the list array is nullable.
ListArray
[1, 2, 3]
[[1, 2, 3]]