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
select array_field from table
[abc, acb]
[bca, bac]
[cab, cba]
select array_length(array_field) from table
array_field: Utf8
The text was updated successfully, but these errors were encountered:
I believe this problem arises from our approach of treating all instances of List as the same situation. https://github.com/apache/arrow-datafusion/blob/94c442c8ff24a2b23f29d7579a0560c6daf76be9/datafusion/physical-expr/src/array_expressions.rs#L951-L958
List
Sorry, something went wrong.
array_contains
@bubbajoe the first implementation is only suitable for scalars. I will do for arrays soon.
@bubbajoe Closed by #6864
array_dims
array_ndims
cardinality
array_length
Successfully merging a pull request may close this issue.
Describe the bug
select array_field from table
[abc, acb]
[bca, bac]
[cab, cba]
select array_length(array_field) from table
To Reproduce
select array_length(array_field) from table
Expected behavior
select array_length(array_field) from table
Additional context
array_field: Utf8
The text was updated successfully, but these errors were encountered: