You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openjpa.apache.org by "Pinaki Poddar (JIRA)" <ji...@apache.org> on 2008/08/02 01:45:31 UTC

[jira] Resolved: (OPENJPA-28) groupby clause of a subquery incorrectly duplicated in the main query in the generated SQL

     [ https://issues.apache.org/jira/browse/OPENJPA-28?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pinaki Poddar resolved OPENJPA-28.
----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.3.0
                   1.2.0

> groupby clause of a subquery incorrectly duplicated in the main query in the generated SQL
> ------------------------------------------------------------------------------------------
>
>                 Key: OPENJPA-28
>                 URL: https://issues.apache.org/jira/browse/OPENJPA-28
>             Project: OpenJPA
>          Issue Type: Bug
>          Components: query
>            Reporter: Catalina Wei
>            Assignee: Pinaki Poddar
>             Fix For: 1.2.0, 1.3.0
>
>
> JPquery: select e.name, e.salary from EmpBean e where (e.name = Any(select e1.name from EmpBean e1 group by e1.name )) order by e.name 
> generated pushdown SQL:
> SELECT t0.name, t0.salary, t1.name FROM EmpBean t0 JOIN EmpBean t1 ON (1 = 1) WHERE (t0.name = ANY((SELECT t2.name FROM EmpBean t2 GROUP BY t2.name))) GROUP BY t1.name ORDER BY t0.name ASC
> correct pushdown SQL should be:
> SELECT t0.name, t0.salary, t1.name FROM EmpBean t0 JOIN EmpBean t1 ON (1 = 1) WHERE (t0.name = ANY((SELECT t2.name FROM EmpBean t2 GROUP BY t2.name))) ORDER BY t0.name ASC

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.