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
I tried to use the nightly commit in the upstream DataFusion (nightly commit) and the tests failed.
I think it's a bug caused by #1551. Consider the following SQL:
select 0. as c1
It should be parsed to
ExprWithAlias { expr: Value(Number("0.", false)), alias: Ident { value: "c1", quote_style: None } }
but it seems to be parsed to
CompositeAccess { expr: Value(Number("0", false)), key: Ident { value: "as", quote_style: None, span: Span(Location(0,0)..Location(0,0)) }
We should handle this case in parse_compound_field_access, too.
parse_compound_field_access
The text was updated successfully, but these errors were encountered:
I'll take a look at this issue soon.
Sorry, something went wrong.
0.54.0
After some tests, I believe this syntax is broken by #1600 and #1598
goldmedal
Successfully merging a pull request may close this issue.
Description
I tried to use the nightly commit in the upstream DataFusion (nightly commit) and the tests failed.
I think it's a bug caused by #1551. Consider the following SQL:It should be parsed to
but it seems to be parsed to
We should handle this case in
parse_compound_field_access
, too.The text was updated successfully, but these errors were encountered: