Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have following jpa criteria query:

    CriteriaBuilder cb = em.getCriteriaBuilder();
    CriteriaQuery<Company> cq = cb.createQuery(Company.class);
    Root<Company> root = cq.from(Company.class);
    cq.select(root);

    Subquery<String> sq = cq.subquery(String.class);
    Root<Employee> subroot = sq.from(Employee.class);
    sq.select(subroot.get(Employee_.lastName));

    Predicate typePredicate = cb.equal(subroot.get(Employee_.lastName), "Doe");

    Predicate correlatePredicate = cb.equal(root.get(Company_.employees), subroot);
    sq.where(cb.and(typePredicate, correlatePredicate));
    cq.where(cb.exists(sq));


    TypedQuery<Company> typedQuery = em.createQuery(cq);
    List<Company> companies = typedQuery.getResultList();

Eclipselink produces following SQL:

    SELECT t0.ID, ... FROM COMPANY t0 
    WHERE EXISTS (SELECT t1.LASTNAME FROM EMPLOYEES t2, EMPLOYEES t1 
                  WHERE (((t1.LASTNAME = ?) AND (t1.ID = t2.ID)) 
                  AND (t2.COMPANY_ID = t0.ID))) 

As you can see there is an unneccessary join on table EMPLOYEES. How do I get rid of this join?

share|improve this question
improve your accept rate – NullPointerException Dec 4 '12 at 13:31
First, this is not helpful and not related to this question. Second, could you please elaborate which answers I have not accepted but should have? – Waxolunist Dec 4 '12 at 14:16
Your accept rate is just 57%, hence improve that – NullPointerException Dec 4 '12 at 16:20
I know that and it just doesn't answer my question. – Waxolunist Dec 4 '12 at 19:19

1 Answer

up vote 1 down vote accepted

You don't seem to need a subquery for the query, just a join should be enough,

http://en.wikibooks.org/wiki/Java_Persistence/Criteria#Join

Otherwise, what version are you using? Can you try EclipseLink 2.4.

If it still has the duplicate, please log a bug and vote for it.

You might be able to use the inverse ManyToOne, instead of the OneToMany (i.e. root == subroot.get("company") ).

Also try JPQL in 2.4, is the join optimized?

share|improve this answer
Sorry, I am bound to eclipselink 2.3 because of our Weblogic Dependeny 10.3.5. I cannot change the model. I will try the join-approach. – Waxolunist Dec 4 '12 at 15:01
I filed a bug: bugs.eclipse.org/bugs/show_bug.cgi?id=395792 – Waxolunist Dec 5 '12 at 8:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.