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
the 'unnest' table function reads an array or list, and out put a table
the result is same as that of postgresql
select unnest(ARRAY[1,2,3]); unnest -------- 1 2 3 select * from unnest(ARRAY[1,2,3]); unnest -------- 1 2 3
No response
The text was updated successfully, but these errors were encountered:
I think it is duplicated issue from #6555 btw, first example is implemented
Sorry, something went wrong.
when will the function available?
first one should be available now. second one it not planned
take
Unnest seems to be recognized as a TableFactor in sqlparser-rs, and implementing support for it in DataFusion might be straightforward.
Unnest
sqlparser-rs
I'll work on this issue after PR #9342.
unnest
jonahgao
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
the 'unnest' table function reads an array or list, and out put a table
Describe the solution you'd like
the result is same as that of postgresql
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: