-
Notifications
You must be signed in to change notification settings - Fork 695
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
Sequence is not used when specifying via autoIncrement #1209
Comments
Tapac
added a commit
that referenced
this issue
Apr 20, 2021
Tapac
added a commit
that referenced
this issue
Apr 20, 2021
SchweinchenFuntik
pushed a commit
to SchweinchenFuntik/Exposed
that referenced
this issue
Oct 23, 2021
…ects JetBrains#492 Support sequences in SQL Server JetBrains#1164 Sequence is not used when specifying via autoIncrement JetBrains#1209
SchweinchenFuntik
pushed a commit
to SchweinchenFuntik/Exposed
that referenced
this issue
Oct 23, 2021
SchweinchenFuntik
pushed a commit
to SchweinchenFuntik/Exposed
that referenced
this issue
Oct 23, 2021
For anyone that wanders here somehow. Had this issue in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to create a table and the corresponding DAO like this:
When I try to insert a new entity via
transaction { Role.new { name = "new entity" } }
I get the following exception:I checked the sequence with
select last_value from pg_sequences where sequencename like 'role_id_seq';
and the last value is 41.Am I creating the Table or Entity in a wrong way or is this an issue with Exposed? Thanks in advance and feel free to contact me if you need any more info :)
The text was updated successfully, but these errors were encountered: