[
https://issues.apache.org/jira/browse/OPENJPA-28?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Craig Russell updated OPENJPA-28:
---------------------------------
Fix Version/s: (was: 0.9.8)
> 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
>
> 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.