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 following query parses ok: SELECT JSON_OBJECTAGG( KEY foo VALUE bar) FROM dual
SELECT JSON_OBJECTAGG( KEY foo VALUE bar) FROM dual
But this one doesn't (only change is adding prefixes to column names: SELECT JSON_OBJECTAGG( KEY q.foo VALUE q.bar) FROM dual
SELECT JSON_OBJECTAGG( KEY q.foo VALUE q.bar) FROM dual
Also, this alternative is valid but fail parsing: SELECT JSON_OBJECTAGG(foo, bar) FROM dual
SELECT JSON_OBJECTAGG(foo, bar) FROM dual
The text was updated successfully, but these errors were encountered:
Greetings!
Thanks for reporting, I will look into it.
Sorry, something went wrong.
This is the current implementation.
At least in Oracle, this seem to have changed only recently: https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/JSON_OBJECTAGG.html
manticore-projects
No branches or pull requests
The following query parses ok:
SELECT JSON_OBJECTAGG( KEY foo VALUE bar) FROM dual
But this one doesn't (only change is adding prefixes to column names:
SELECT JSON_OBJECTAGG( KEY q.foo VALUE q.bar) FROM dual
Also, this alternative is valid but fail parsing:
SELECT JSON_OBJECTAGG(foo, bar) FROM dual
The text was updated successfully, but these errors were encountered: