Support right outer join with other conditions#7344
Support right outer join with other conditions#7344ti-chi-bot[bot] merged 14 commits intopingcap:masterfrom
Conversation
Signed-off-by: yibin <huyibin@pingcap.com>
Signed-off-by: yibin <huyibin@pingcap.com>
|
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. DetailsReviewer can indicate their review by submitting an approval review. |
|
/run-all-tests |
Signed-off-by: yibin <huyibin@pingcap.com>
|
/run-all-tests |
Signed-off-by: yibin <huyibin@pingcap.com>
|
/run-all-tests |
Signed-off-by: yibin <huyibin@pingcap.com>
Signed-off-by: yibin <huyibin@pingcap.com>
Signed-off-by: yibin <huyibin@pingcap.com>
| else | ||
| fillColumnsUsingCurrentPartition<false, false>(num_columns_left, columns_left, num_columns_right, columns_right, row_counter_column); | ||
| break; | ||
| default: |
There was a problem hiding this comment.
In which case will the code reach this default branch?
There was a problem hiding this comment.
full join cases? Tidb join cases seems not able to reach here
| else | ||
| fillColumnsUsingCurrentPartition<false, false>(num_columns_left, columns_left, num_columns_right, columns_right, row_counter_column); | ||
| break; | ||
| case ASTTableJoin::Kind::RightOuter: |
There was a problem hiding this comment.
Looks like case ASTTableJoin::Kind::RightOuter and case ASTTableJoin::Kind::RightAnti is the same?
There was a problem hiding this comment.
Yeah, they can be merged.
Signed-off-by: yibin <huyibin@pingcap.com>
Signed-off-by: yibin <huyibin@pingcap.com>
| ProbeProcessInfo & probe_process_info, | ||
| MutableColumnPtr & record_mapped_entry_column); | ||
| template <ASTTableJoin::Kind KIND, ASTTableJoin::Strictness STRICTNESS, typename Maps> | ||
| template <ASTTableJoin::Kind KIND, ASTTableJoin::Strictness STRICTNESS, typename Maps, bool row_flagged_map> |
There was a problem hiding this comment.
It seems we can get row_flagged_map from Maps?
There was a problem hiding this comment.
Yes. It would be not that straight forward. Use row_flagged_map would be clearer.
|
/merge |
|
@yibin87: It seems you want to merge this PR, I will help you trigger all the tests: /run-all-tests You only need to trigger If you have any questions about the PR merge process, please refer to pr process. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
|
This pull request has been accepted and is ready to merge. DetailsCommit hash: b3b1ca5 |
|
@yibin87: Your PR was out of date, I have automatically updated it for you. At the same time I will also trigger all tests for you: /run-all-tests
If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
|
/run-unit-test |
What problem does this PR solve?
Issue Number: ref #7280
Problem Summary:
What is changed and how it works?
Add support for RightOuter kind join with other conditions, and do a little refact:
Check List
Tests
Side effects
Documentation
Release note