]
Steve Ebersole updated HHH-6855:
--------------------------------
Assignee: Steve Ebersole
SequenceStyleGenerator should force use of TableStructure when the
optimizer is PooledLo
----------------------------------------------------------------------------------------
Key: HHH-6855
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-6855
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 4.0.0.CR6
Reporter: Oskar Berggren
Assignee: Steve Ebersole
Labels: id
Fix For: 4.0.1
The SequenceStyleGenerator's configure() method contains the following snippet:
if ( dialect.supportsSequences() && !forceTableUse ) {
if ( OptimizerFactory.POOL.equals( optimizationStrategy ) &&
!dialect.supportsPooledSequences() ) {
forceTableUse = true;
LOG.forcingTableUse();
}
}
Since "supportsPooledSequences" is about initial value and increment size, it
seems tables should be forced also for the PooledLo optimizer.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: