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
T1
JOIN T2 ON T1.k1 = T2.k1
JOIN T3 ON T1.k2 = T2.k2
GROUP BY k2
Then even if T3 is tiny, we always seem to be doing partitioned join for k2. This is undesirable. Being able to broadcast should override reusing partitioning (maybe CBO?).
If I have a query:
T1
JOIN T2 ON T1.k1 = T2.k1
JOIN T3 ON T1.k2 = T2.k2
GROUP BY k2
Then even if T3 is tiny, we always seem to be doing partitioned join for k2. This is undesirable. Being able to broadcast should override reusing partitioning (maybe CBO?).
@mlyublena @feilong-liu
The text was updated successfully, but these errors were encountered: