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? The nested function fails query execution when used in WHERE, GROUP BY, ORDER BY, and HAVING clauses.
How can one reproduce the bug? Steps to reproduce the behavior:
select * from nested_objects GROUP BY nested(message.info);
{ "error": { "reason": "There was internal problem at backend", "details": "Failed to serialize expression: FunctionExpression(functionName=nested, arguments=[message.info])", "type": "IllegalStateException" }, "status": 503 }
SELECT * FROM nested_objects WHERE nested(message.info) = 'a';
{ "error": { "reason": "There was internal problem at backend", "details": "Failed to serialize expression: =(FunctionExpression(functionName=nested, arguments=[message.info]), \"a\")", "type": "IllegalStateException" }, "status": 503 }
What is the expected behavior? Nested function query should succeed when used in WHERE clause, and in GROUP BY with json format.
WHERE
GROUP BY
What is your host/environment?
The text was updated successfully, but these errors were encountered:
Do we want to close this now?
Sorry, something went wrong.
@dai-chen Yes we are good to close this now!
No branches or pull requests
What is the bug?
The nested function fails query execution when used in WHERE, GROUP BY, ORDER BY, and HAVING clauses.
How can one reproduce the bug?
Steps to reproduce the behavior:
select * from nested_objects GROUP BY nested(message.info);
SELECT * FROM nested_objects WHERE nested(message.info) = 'a';
What is the expected behavior?
Nested function query should succeed when used in
WHERE
clause, and inGROUP BY
with json format.What is your host/environment?
The text was updated successfully, but these errors were encountered: