join fetch not returning duplicate references which not conforming to ejb3.0
spec
---------------------------------------------------------------------------------
Key: OPENJPA-135
URL: https://issues.apache.org/jira/browse/OPENJPA-135
Project: OpenJPA
Issue Type: Bug
Components: jpa
Reporter: Catalina Wei
In the description in EJB 3.0 JPA spec, section 4.4.5.3, the following query
example
SELECT d
FROM Department d LEFT JOIN FETCH d.employees
WHERE d.deptno = 1
The spec says this query returns 5 references to the department 1 entity if
department 1 has 5 employees.
The same query running with openjpa code, it returns only 1 reference to
department 1 entity.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.