-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge?
Follow on to #6119
For efficient use of arrays arrow-datafusion should support some operations:
- Concatenate (use operator
||) (array_concat,array_appendandarray_prependanalog)
Describe the solution you'd like
Examples:
select make_array(1, 2, 3) || make_array(4, 5, 6);
----
[1, 2, 3, 4, 5, 6]
select 1 || make_array(2, 3, 4);
----
[1, 2, 3, 4]
select make_array(1, 2, 3) || 4;
----
[1, 2, 3, 4]
Describe alternatives you've considered
No response
Additional context
https://www.postgresql.org/docs/current/functions-array.html
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request