Fixed
Details
Assignee
Former userFormer user(Deactivated)Reporter
Former userFormer user(Deactivated)Components
Fix versions
Priority
Major
Details
Details
Assignee
Former user
Former user(Deactivated)Reporter
Former user
Former user(Deactivated)Components
Fix versions
Priority
Created January 6, 2016 at 11:11 PM
Updated January 13, 2016 at 6:27 PM
Resolved January 6, 2016 at 11:44 PM
Currently, when Oracle12cDialect is used, an IDENTITY column is used for an entity ID when mapped with:
1)
<generator class="native"/>
using hbm.xml;2)
@GeneratedValue(GenerationType.AUTO)
with hibernate.id.new_generator_mappings=false; (note that hibernate.id.new_generator_mappings=true is the default).After this is fixed, Oracle12cDialect will use a SequenceStyleGenerator in these cases, consistent with earlier versions of Oracle dialect versions.