-
Notifications
You must be signed in to change notification settings - Fork 697
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
SQLite autoincrement table is not created correctly #328
Comments
Thank you for a report, strange that none of the unit-tests hit that problem. Release with the fix for that issue will be available on the next week. |
@Tapac |
JetBrains#328 AUTO_INCREMENT changed to AUTOINCREMENT for sqllite
@tapanrgohil , oh thank you for your attention, I've just noticed that the fix was committed to non-master branch. I'll cherry-pick it and reject your PR. Release is planned on today-tomorrow. |
@Tapac actually this pr is from current master branch . I think you can merge it |
I'm testing exposed with a SQLite driver (https://github.com/xerial/sqlite-jdbc). I use the following table definition :
And my insert method is doing this :
But when I try to insert a new entry, leaving the id empty to let the autoincrement do its job, I get the following error :
When looking into the created file, here's what it looks like :
which uses
AUTO_INCREMENT
instead ofAUTOINCREMENT
The text was updated successfully, but these errors were encountered: