]
Steve Ebersole closed HHH-7003.
-------------------------------
Closing for 4.1 release
Scale = 0 doesn't supported
---------------------------
Key: HHH-7003
URL:
https://hibernate.onjira.com/browse/HHH-7003
Project: Hibernate ORM
Issue Type: Bug
Components: envers
Affects Versions: 4.0.1
Reporter: R. Gainullin
Assignee: Lukasz Antoniak
Labels: auditing
Fix For: 4.1.0
If Audited entity consist Column with scale equals zero than Revision table create column
with default scale value
Entity class:
@Entity
@Audited
public class Ent {
@Column(scale=0,precision=20)
private BigInteger field1;
....
}
For Postresql revision table:
Table Ent_AUD{
field1 numeric(20, 2)
}
Probably error in file
org.hibernate.envers.configuration.metadata.MetadataTools.java
in method
public static Element addColumn(...) {
...
if (scale != 0) {
column_mapping.addAttribute("scale", Integer.toString(scale));
}
...
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: