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
What is the bug? These 2 queries got failure because of syntax error.
source = myglue_test.default.region | where 'EUROPE' | eval array=json_array(1, 2, 3, 4) | expand array as uid | fields uid, r_name source = myglue_test.tpch_csv.orders | eval array=json_array(1, 2, 3) | expand array as uid | fields uid, o_comment
How can one reproduce the bug? Run the above queries in GA env.
What is the expected behavior? It should run successfully.
What is your host/environment?
Do you have any screenshots? If applicable, add screenshots to help explain your problem.
Do you have any additional context? Looks like this commit is missing in GA branch p1-antlr-grammar: #868
So the current env doesn't support AS after EXPAND, see diff:
p1-antlr-grammar: expandCommand : EXPAND fieldExpression ; main: expandCommand : EXPAND fieldExpression (AS alias = qualifiedName)? ;
The text was updated successfully, but these errors were encountered:
expand
YANG-DB
No branches or pull requests
What is the bug?
These 2 queries got failure because of syntax error.
How can one reproduce the bug?
Run the above queries in GA env.
What is the expected behavior?
It should run successfully.
What is your host/environment?
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Looks like this commit is missing in GA branch p1-antlr-grammar:
#868
So the current env doesn't support AS after EXPAND, see diff:
The text was updated successfully, but these errors were encountered: