]
Emmanuel Bernard updated HHH-3434:
----------------------------------
Fix Version/s: 3.6.8
Assignee: Emmanuel Bernard
hql insert doesn't work when inserting into a table with
composite-id
----------------------------------------------------------------------
Key: HHH-3434
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-3434
Project: Hibernate Core
Issue Type: Bug
Components: query-hql
Affects Versions: 3.2.6
Environment: 3.2.6GA, any database
Reporter: Ning Zhang
Assignee: Emmanuel Bernard
Fix For: 3.6.8, 4.0.0.next
Attachments: IntoClause.3.6.4.Final.patch, IntoClause.patch
I have a table serving as an association table, so the Id of the table is just the ids
from the linked tables. The mapping file looks like:
<class name="UserPt" table="user_pt" >
<composite-id>
<key-property name="userId" type="java.lang.Long"
column="user_id"/>
<key-property name="ptId" type="java.lang.Long"
column="pt_id"/>
</composite-id>
</class>
And I need to run some HQL to insert the association into the table like:
INSERT INTO UserPt(userId, ptId) SELECT user.id, pt.id FROM...........
When I run this HQL, it gives an error saying:
"can only generate ids as part of bulk insert with either sequence or post-insert
style generators".
I logged the bug in
http://opensource.atlassian.com/projects/hibernate/browse/HHH-3400,
but it is closed because I asked for a workaround. So this time I am not asking for
anthing, just report the bug.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: