Rejected
Details
Assignee
UnassignedUnassignedReporter
Igor DmitrievIgor DmitrievLabels
Components
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Igor Dmitriev
Igor DmitrievLabels
Components
Affects versions
Priority
Created July 21, 2016 at 9:00 PM
Updated December 3, 2024 at 9:06 AM
Resolved July 23, 2016 at 5:02 AM
Hi, I am trying to migrate from 4.3.6.Final to 5.1.0 Final to get java 8 date time api mapping and unrelated join entities features.
But unfortunately I got an issue related with sequence generation.
Here is my test:
CREATE SEQUENCE c_seq start 1 increment 1;
---------------------------------------------------------------------------------------------------------------------
Console output:
Actually you have changed sequence strategy generation in new 5.1.0 version
old: SequenceHiLoGenerator
new: SequenceStyleGenerator
And SequenceStyleGenerator uses PooledOptimizer.
I've spent time debugging PooledOptimizer and got that it happens due to this piece of code
But it works fine with Hibernate 4.3.6.Final
Console output:
As we can see everything is fine, allocationSize works and there is no exception with 4.3.6.
I am really wondering about negative ids and this issue.
NOTE: If I change my sequence to CREATE SEQUENCE c_seq start 1 increment 20;
,increment size is the same as allocationSize, it works fine:
It even better then in 4.3.6 cause id starts from 1, not from 20