[hibernate-issues] [Hibernate-JIRA] Assigned: (HHH-6035) @Index annotation ommitted while creating audit tables

Adam Warski (JIRA) noreply at atlassian.com
Tue Mar 22 03:15:09 EDT 2011


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-6035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Adam Warski reassigned HHH-6035:
--------------------------------

    Assignee: Adam Warski

> @Index annotation ommitted while creating audit tables
> ------------------------------------------------------
>
>                 Key: HHH-6035
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6035
>             Project: Hibernate Core
>          Issue Type: Bug
>          Components: envers
>    Affects Versions: 4.0.0.Alpha1
>         Environment: All, Tested on Oracle 10g
>            Reporter: Lukasz Antoniak
>            Assignee: Adam Warski
>            Priority: Minor
>   Original Estimate: 10h
>  Remaining Estimate: 10h
>
> Assume audited entity configured as follows:
> {code:title=Address.java|borderStyle=solid}
> @Entity
> @Table(appliesTo = "Address", indexes = { @Index(name="idx", columnNames = { "streetName", "houseNumber" } ) } ) 
> public class Address {
>     @Id
>     @GeneratedValue
>     private int id;
>     @Audited
>     private String streetName;
>     @Audited
>     private Integer houseNumber;
>     @Audited
>     private Integer flatNumber;
>     ...
> }
> {code}
> The table {{ADDRESS_AUD}} is being created without any index on columns {{streetName}} and {{houseNumber}} (corresponding to original index {{idx}}).
> Verify the correctness of applying [@Index|http://docs.jboss.org/hibernate/core/3.5/api/org/hibernate/annotations/Index.html] annotation on fields and methods.
> In my opinion two additional configuration parameters shall be added, since only one index structure with the given name can exist in a single database schema.
> Bug report on Hibernate Envers forum: [http://community.jboss.org/thread/163497?tstart=0].

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list