Skip to content
New issue

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

Keyword PRIMARY KEY is not parsed correctly #740

Closed
ozooxo opened this issue Sep 28, 2023 · 2 comments
Closed

Keyword PRIMARY KEY is not parsed correctly #740

ozooxo opened this issue Sep 28, 2023 · 2 comments
Milestone

Comments

@ozooxo
Copy link

ozooxo commented Sep 28, 2023

Describe the bug
Keyword PRIMARY KEY is not parsed correctly. Instead, KEY, <next identifier> is parsed into a nested TokenList.

To Reproduce
It can be reproduced by executing the following python script:

import sqlparse

statements = sqlparse.parse("""
CREATE TABLE foo (
    id serial PRIMARY KEY,
    data text
)
""")

statements[0].tokens[7]

statements[0].tokens[7].tokens

statements[0].tokens[7].tokens[12]

statements[0].tokens[7].tokens[12].tokens

Screenshot 2023-09-27 at 11 26 05 PM

Expected behavior
[<Keyword 'KEY' at 0x104DC88E0>, <Punctuation ',' at 0x104DC8940>, <Newline ' ' at 0x104DC89A0>, <Whitespace ' ' at 0x104DC8A00>, <Keyword 'data' at 0x104DC8A60>] should be flattened into the Parenthesis array, instead of some parts before , and some parts after it become a IdentifierList.

Versions (please complete the following information):

  • Python: 3.11.5
  • sqlparse: 0.4.4

Additional context
N/A

@keredson
Copy link

i also hit this issue.

@andialbrecht
Copy link
Owner

Thanks for reporting!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants