| For example, historically we would interpret:
@Id
@GeneratedValue( strategy = GenerationType.SEQUENCE, generator = "my_db_sequence" )
@SequenceGenerator( name = "my_db_sequence", initialValue = 100, allocationSize = 500 )
as mapping to a sequence named hibernate_sequence. But this is about adding support for interpreting it as being named my_db_sequence. Additionally, this adds support for mappings like:
@Id
@GeneratedValue( strategy = GenerationType.SEQUENCE, generator = "my_db_sequence" )
public Integer id;
|