-
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
unnest errors in conjunction with SELECT *
#12684
Labels
Comments
Thanks for the report @ahirner -- the only obvious change to unnest in 42 was #11797 from @jayzhan211 Hopefully someone can look into this soon |
Or it's related to more optimal wildcard expansion? #11681 |
|
take |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
One cannot include all colums in addition to the unnested column. Consequently, excluding some of all columns also stopped working in
42
.To Reproduce
Create table with regular and to be unnested columns:
Query unnested structs but also all others.
Error:
When excluding some via
except
:.. the error becomes:
Expected behavior
The qeries do work in datafusion 41:
..with
except (column3, column1)
:Additional context
It seems a to be a parsing issue, or perhaps loosing track of field names (#12560)?
The text was updated successfully, but these errors were encountered: