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 am trying to parse an SQL query:
do $$ declare content_count int = 10; begin /*comment*/ select 1; end; $$
sqlformat.org parse and highlight it correctly:
But when I try to do it in Python:
import sqlparse def parse(s: str): res = sqlparse.parse(s) print(res[0].tokens) parse(""" do $$ declare content_count int = 10; begin /*comment*/ select 1; end; $$""")
I get :
[<Newline ' ' at 0x7AB1C28A8408>, <Keyword 'do' at 0x7AB1C28A8468>, <Whitespace ' ' at 0x7AB1C28A84C8>, <Literal '$$ dec...' at 0x7AB1C28A8528>]
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to parse an SQL query:
sqlformat.org parse and highlight it correctly:
But when I try to do it in Python:
I get :
What am I doing wrong?
The text was updated successfully, but these errors were encountered: