jayzhan211 opened a new issue, #9252:
URL: https://github.com/apache/arrow-datafusion/issues/9252
### Is your feature request related to a problem or challenge?
```
query error DataFusion error: Arrow error: Compute error: List\(Field \{
name: "item", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered:
false, metadata: \{\} \}\) not supported in rank
select array_sort([[[1, 0, 2]], [[1, 2, 2]], [[1, 1, 2]]]);
query ?
select array_sort([[1, 0, 2], [1, 2, 2], [1, 1, 2]]);
----
[[1, 0, 2], [1, 1, 2], [1, 2, 2]]
```
We can handle 2D array but fails on the higher dimension.
The error `xxx not supported in rank` is due to `arrow-rs`, so this feature
might need to fix the upstream first.
### Describe the solution you'd like
_No response_
### Describe alternatives you've considered
_No response_
### Additional context
_No response_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]