[hibernate-issues] [Hibernate-JIRA] Created: (HHH-2772) with-clause stopped working

Ivo Danihelka (JIRA) noreply at atlassian.com
Wed Aug 8 13:22:13 EDT 2007


with-clause stopped working
---------------------------

                 Key: HHH-2772
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2772
             Project: Hibernate3
          Issue Type: Bug
          Components: query-hql
    Affects Versions: 3.2.5, 3.2.4.sp1, 3.2.4, 3.2.3, 3.2.2
            Reporter: Ivo Danihelka


The with-clause stopped working in all hibernate versions above 3.2.1 (i.e. 3.2.2+).

Before that, it was possible to write HQL:
SELECT cat FROM Cat cat LEFT JOIN cat.kittens as kitten WITH kitten.owner=:owner

Now the HQL is raising an exception:
org.hibernate.hql.ast.InvalidWithClauseException: with clause can only reference columns in the driving table

Workaround is to explicitly use primary key (ownerId):
SELECT cat FROM Cat cat LEFT JOIN cat.kittens as kitten WITH kitten.owner.ownerId=:ownerId



-- 
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