| 763 | } |
| 764 | |
| 765 | bool MergeJoin::addBlockToJoin(const Block & src_block, bool) |
| 766 | { |
| 767 | Block block = modifyRightBlock(src_block); |
| 768 | |
| 769 | addConditionJoinColumn(block, JoinTableSide::Right); |
| 770 | sortBlock(block, right_sort_description); |
| 771 | return saveRightBlock(std::move(block)); |
| 772 | } |
| 773 | |
| 774 | void MergeJoin::checkTypesOfKeys(const Block & block) const |
| 775 | { |
nothing calls this directly
no test coverage detected