You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inner join elimination. Since it's based on the foreign key constraint, no need to consider it in TiDB
outer join elimination. For example left outer join, if the parent only use the columns from left table and the join key of right table(the inner table) is a unique key of the right table. the left outer join can be eliminated.
outer join elimination with distinct. see the examples in the reference for more detail.
Feature Request
Describe the feature you'd like:
Three kinds of join eliminations:
inner join elimination. Since it's based on the foreign key constraint, no need to consider it in TiDBreference:
https://blog.jooq.org/2017/09/01/join-elimination-an-essential-optimiser-feature-for-advanced-sql-usage/
The text was updated successfully, but these errors were encountered: