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
Is your feature request related to a problem? Please describe.
For now, query is parsed by Query.parse. It can locate parameter indexes, map parameter names, and reformat prepared statements.
Query.parse
But it has no ability to know what the statement should be, for example:
RETURNING
INSERT .. VALUES ..
So the parser should be improved to support basically syntax analysis.
This will help implement #136 and provide the ability to add RETURNING clause checks
Describe the solution you'd like
Add basically syntax analysis for Query parser.
Query
Additional context
See also #201 issuecomment-1894821758
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
For now, query is parsed by
Query.parse
. It can locate parameter indexes, map parameter names, and reformat prepared statements.But it has no ability to know what the statement should be, for example:
RETURNING
clause be appended to the statement?RETURNING
clause?INSERT .. VALUES ..
, and can it be rewritten as a bulk insert?So the parser should be improved to support basically syntax analysis.
This will help implement #136 and provide the ability to add
RETURNING
clause checksDescribe the solution you'd like
Add basically syntax analysis for
Query
parser.Additional context
See also #201 issuecomment-1894821758
The text was updated successfully, but these errors were encountered: