feat: enable Phase 3-5 for FULL JOIN to collect unmatched LEFT rows#42
feat: enable Phase 3-5 for FULL JOIN to collect unmatched LEFT rows#42
Conversation
- Track outer_join_left_key in addition to outer_join_right_key - Enable Phase 3-5 for FULL JOIN (not RIGHT JOIN - RIGHT works via local executor) - Add LEFT-side Phase 3: UnmatchedLeftRowsReport RPC to each data node - Add LEFT-side Phase 4: FetchUnmatchedLeftRows RPC to collect unmatched rows - Aggregate unmatched LEFT rows into final results This implements Option C symmetric handling for FULL JOIN: - Unmatched RIGHT rows collected via Phase 3-4 (existing) - Unmatched LEFT rows collected via LEFT-side Phase 3-4 (new)
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 37 minutes and 1 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
outer_join_left_keyin addition toouter_join_right_keyUnmatchedLeftRowsReportRPC to each data nodeFetchUnmatchedLeftRowsRPC to collect unmatched rowsTest plan
Implementation Notes
This implements Option C symmetric handling for FULL JOIN:
Part of Option C implementation for FULL JOIN support.