[YSQL] Improve performance for nested loop join execution #14070
Labels
area/ysql
Yugabyte SQL (YSQL)
kind/enhancement
This is an enhancement of an existing feature
priority/medium
Medium priority issue
Jira Link: DB-3564
Description
Currently, we only support batched nested loop joins on a clause of the form
inner_table.c1 = outer_table.c1
. We can extend this support toinner_table.c1 = outer_table.c1 AND inner_table.c2 = outer_table.c2
. ([YSQL] Support batched nested loop on conjunction clauses #14068)inner_table.c1 = f(outer_table.c1)
. ([YSQL] Support batched nested loop joins on clauses that have expressions on the outer variables #14069)The text was updated successfully, but these errors were encountered: