-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Column support for array functions #6804
Labels
enhancement
New feature or request
Comments
This was referenced Jul 6, 2023
reopened per @izveigor #6864 (comment) |
Is their no function for extracting a value using index?
|
@bubbajoe you can use
If you are interested in the implementation of the function itself, then we are now discussing this: #6855 |
Thanks. Is |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem or challenge?
#6709
#6693
After the PR (#6384) was merged there are a lot of array functions became part of
arrow-datafusion
. The first implementation was designed only for scalar data, but most of the intended operations will be performed using columns.So, here is a list of all array functions 🎯:
array_append
,array_prepend
,array_position
andarray_positions
#6805array_dims
,array_ndims
,cardinality
andarray_length
#6864array_dims
,array_ndims
,cardinality
andarray_length
#6864array_dims
,array_ndims
,cardinality
andarray_length
#6864array_append
,array_prepend
,array_position
andarray_positions
#6805array_append
,array_prepend
,array_position
andarray_positions
#6805array_append
,array_prepend
,array_position
andarray_positions
#6805array_dims
,array_ndims
,cardinality
andarray_length
#6864Describe the solution you'd like
The behavior of columns with array functions should be identical with:
tables
array_append
array_prepend
array_concat
array_position
array_positions
array_replace
array_to_string
cardinality
trim_array
array_length
array_dims
array_ndims
array_contains
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: