You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function make_array was implemented in arrow-datafusion without supporting null elements, I think it would be better to take the concept to support NULLS in different arrays and their methods.
All methods should support this feature, especially the method array_to_string (See PR: #6384) should support null_string argument to replace NULL with it.
Is your feature request related to a problem or challenge?
Follow on to #6384
The function
make_array
was implemented inarrow-datafusion
without supporting null elements, I think it would be better to take the concept to support NULLS in different arrays and their methods.All methods should support this feature, especially the method
array_to_string
(See PR: #6384) should supportnull_string
argument to replace NULL with it.Describe the solution you'd like
I suggest to consider use
try_new
method (See https://docs.rs/arrow/latest/arrow/array/struct.PrimitiveArray.html#method.try_new)Examples:
Describe alternatives you've considered
No response
Additional context
Simillar Issues:
#6119
Simillar PR:
#3122
#3199
The text was updated successfully, but these errors were encountered: