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
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, )
The text was updated successfully, but these errors were encountered:
@hubg398 thanks for opening new issues, I don’t have much time on this week, maybe I will have some hours on weekends
Sorry, something went wrong.
Hey @xnuinside for sure, was more logging them here to track them bugs, not expecting any urgency in fixing :)
Thanks again
No branches or pull requests
Parser fails when IDENTITY(1,1) comes after KEYs in column def.
This fails:
This works
The text was updated successfully, but these errors were encountered: