HHH-3680 - Sybase - composite primary key in unit test exceeds maximum for index causing failure
git-svn-id: https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_3@15741 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
de6e3dc310
commit
f8b1afa278
|
@ -16,8 +16,8 @@
|
|||
|
||||
<class name="User" table="`User`">
|
||||
<composite-id>
|
||||
<key-property name="name"/>
|
||||
<key-property name="org"/>
|
||||
<key-property name="name" length="32"/>
|
||||
<key-property name="org" length="32"/>
|
||||
</composite-id>
|
||||
<set name="groups" table="UserGroup">
|
||||
<key>
|
||||
|
@ -33,8 +33,8 @@
|
|||
|
||||
<class name="Group" table="`Group`">
|
||||
<composite-id>
|
||||
<key-property name="name"/>
|
||||
<key-property name="org"/>
|
||||
<key-property name="name" length="32"/>
|
||||
<key-property name="org" length="32"/>
|
||||
</composite-id>
|
||||
<property name="description"/>
|
||||
<set name="users" table="UserGroup" inverse="true">
|
||||
|
|
Loading…
Reference in New Issue