simple-ddl-parser
simple-ddl-parser copied to clipboard
MsSQL - IDENTITY(1,1) when placed after KEY
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,
)
@hubg398 thanks for opening new issues, I don’t have much time on this week, maybe I will have some hours on weekends
Hey @xnuinside for sure, was more logging them here to track them bugs, not expecting any urgency in fixing :)
Thanks again