[hibernate-issues] [Hibernate-JIRA] Resolved: (HHH-3434) hql insert doesn't work when inserting into a table with composite-id

Emmanuel Bernard (JIRA) noreply at atlassian.com
Wed Oct 19 05:55:20 EDT 2011


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

Emmanuel Bernard resolved HHH-3434.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 4.0.0.next

Thanks Andrei for the extra last mile and the other participants for your contributions. Sorry it took so long.

>  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
>             Fix For: 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: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list