A Hidden Benefit of Implicit Joins: Join Elimination

0
555

Implicit path joins may now skip unnecessary tables in the join tree

One of jOOQ’s key features so far has always been to render pretty much exactly the SQL that users expect, without any surprises – unless some emulation is required to make a query work, of course. This means that while join elimination is a powerful feature of many RDBMS, it isn’t part of jOOQ’s feature set, so far.

This changes, to some extent, with jOOQ 3.19, and #14992, for implicit path joins only. So far, when you write:

ctx.select(ACTOR, ACTOR.film().category().NAME)
   .from(ACTOR)
   .fetch();

The resulting join tree of this query may look similar to this:

FROM
  actor
    LEFT JOIN film_actor ON actor.actor_id = film_actor.actor_id
    LEFT JOIN film ON film_actor.film_id = film.film_id
    LEFT JOIN film_category ON film.film_id = film_category.film_id
    LEFT JOIN category ON film_category.category_id = category.category_id

But, the FILM table isn’t really needed in this particular query, because no columns from it are being projected, and the presence of primary / foreign keys guarantees equivalence if we just skip the table in the join tree:

FROM
  actor
    LEFT JOIN film_actor ON actor.actor_id = film_actor.actor_id
    LEFT JOIN film_category ON film_actor.film_id = film_category.film_id
    LEFT JOIN category ON film_category.category_id = category.category_id

As soon as any column from the FILM table is projected (or referenced, in general), then the table re-appears in the join tree. E.g. for this query:

ctx.select(ACTOR, ACTOR.film().category().NAME)
   .from(ACTOR)
   // This means we have to add the FILM table again to the join tree:
   .where(ACTOR.film().TITLE.like("A%"))
   .fetch();

In many RDBMS, this doesn’t really matter, because the RDBMS may do the same optimisation, but in some, there’s a big difference. This is a great optimisation in particular because with implicit path joins, jOOQ users can’t really hand-write these optimisations as they’re not authoring the join tree in the FROM clause themselves.

Why implement this only in jOOQ 3.19

Before jOOQ 3.19, there was no support for to-many path joins, and particularly, not for many-to-many path joins, which skip the relationship table. But now, users can write:

// This
ACTOR.film().category().NAME

// Is short (and equivalent) for this:
ACTOR.filmActor().film().filmCategory().category().NAME

Note that the above examples assume that the new Settings.renderImplicitJoinToManyType flag is set to LEFT_JOIN. By default, implicit to-many joins aren’t supported because of their weird semantics in terms of query cardinalities as explained in this blog post. By default, such paths have to be declared explicitly in the FROM clause:

ctx.select(ACTOR, ACTOR.film().category().NAME)
   .from(
       ACTOR,
       ACTOR.film(),
       ACTOR.film().category())
   .fetch();

Or, just:

ctx.select(ACTOR, ACTOR.film().category().NAME)
   .from(
       ACTOR,
       ACTOR.film().category())
   .fetch();
Sponsored
Sponsored
Sponsored
Sponsored
Sponsored
Search
Sponsored
Virtuala FansOnly
CDN FREE
Cloud Convert
Categories
Read More
Other
Expanding Applications and Future Projections of Porcelain Enamel Coatings
The global Porcelain Enamel Coatings Market was valued at USD 2.03 billion in 2023 and is...
By MAYUR YADAV 2025-09-02 12:15:59 0 122
Life
Dinamo napušta još jedan veznjak: Kod Jakirovića je igrao sjajno, ali Kovačeviću ne treba!
Dinamo napušta još jedan veznjak: Kod Jakirovića je igrao sjajno, ali Kovačeviću ne treba!......
By Vedrana Kašić 2025-07-15 08:24:12 0 311
Other
Opportunities and Challenges in the Military Sensors Market
Market OverviewAccording To The Research Report Published By Polaris Market Research, The Global...
By MAYUR YADAV 2025-09-25 10:46:39 0 183
Other
Single-Use Assemblies Market Strategic Collaborations and Supply Agreements 2022–2030
Market Synopsis:The market for single-use assembly is expanding significantly because the...
By Manisha Kashid 2025-05-09 09:03:22 0 320
Art
Big Tech Companies negli Stati Uniti Non Devono Applicare il Digital Services Act
Big Tech, Digital Services Act, FTC, Google, Meta, Apple, libertà degli americani, piattaforme...
By Roberto Manuel 2025-08-31 23:05:25 1 355
Sponsored
Virtuala FansOnly https://virtuala.site