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

MsSQL - IDENTITY(1,1) when placed after KEY #261

Open
hubg398 opened this issue May 27, 2024 · 2 comments
Open

MsSQL - IDENTITY(1,1) when placed after KEY #261

hubg398 opened this issue May 27, 2024 · 2 comments

Comments

@hubg398
Copy link

hubg398 commented May 27, 2024

Parser fails when IDENTITY(1,1) comes after KEYs in column def.

This fails:

create table Customer (
   Id int PRIMARY KEY IDENTITY(1,1),
)

This works

create table Customer (
   Id int IDENTITY(1,1) PRIMARY KEY,
)
@xnuinside
Copy link
Owner

@hubg398 thanks for opening new issues, I don’t have much time on this week, maybe I will have some hours on weekends

@hubg398
Copy link
Author

hubg398 commented May 27, 2024

Hey @xnuinside for sure, was more logging them here to track them bugs, not expecting any urgency in fixing :)

Thanks again

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

2 participants