| 110 | } |
| 111 | |
| 112 | void DirectKeyValueJoin::checkTypesOfKeys(const Block & block) const |
| 113 | { |
| 114 | for (const auto & onexpr : table_join->getClauses()) |
| 115 | { |
| 116 | JoinCommon::checkTypesOfKeys(block, onexpr.key_names_left, right_sample_block, onexpr.key_names_right); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | static void selectFirstMatchForEachKey(const IColumn::Offsets & offsets, MutableColumns & columns, NullMap & null_map) |
| 121 | { |
nothing calls this directly
no test coverage detected