We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow on to #6119
For efficient use of arrays arrow-datafusion should support some operations:
arrow-datafusion
||
array_concat
array_append
array_prepend
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]
No response
https://www.postgresql.org/docs/current/functions-array.html
The text was updated successfully, but these errors were encountered:
Struct
List
ListArray
Successfully merging a pull request may close this issue.
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:||
) (array_concat
,array_append
andarray_prepend
analog)Describe the solution you'd like
Examples:
Describe alternatives you've considered
No response
Additional context
https://www.postgresql.org/docs/current/functions-array.html
The text was updated successfully, but these errors were encountered: