Skip to content
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

Support array sort for nested array #9252

Open
Tracked by #2326
jayzhan211 opened this issue Feb 16, 2024 · 0 comments
Open
Tracked by #2326

Support array sort for nested array #9252

jayzhan211 opened this issue Feb 16, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@jayzhan211
Copy link
Contributor

jayzhan211 commented Feb 16, 2024

Is your feature request related to a problem or challenge?

Follow up on #8279
Benefit #9234

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

File ticket upstream after the issue is clarified

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant