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
152685: sql: include unoptimized right side into apply join EXPLAIN r=yuzefovich a=yuzefovich
The apply join operator works by creating an optimized right side plan for each input row. Previously, this right side was completely omitted from the EXPLAIN outputs. This commit makes things a bit better by including the stringified form of the unoptimized right side plan (similar to the one that can be viewed with `EXPLAIN (OPT)`) in all EXPLAIN variants. In EXPLAIN this looks ok but in EXPLAIN ANALYZE, since the new addition is not annotated with execution statistics, it looks a bit out of place, but I think it's still better than nothing - at least it shows that there is something else going on within apply join that was previously completely hidden.
Fixes: #89585.
Release note: None
Co-authored-by: Yahor Yuzefovich <[email protected]>
0 commit comments