| 1254 | } |
| 1255 | |
| 1256 | void HashJoin::checkTypesOfKeys(const Block & block) const |
| 1257 | { |
| 1258 | for (const auto & onexpr : table_join->getClauses()) |
| 1259 | { |
| 1260 | JoinCommon::checkTypesOfKeys(block, onexpr.key_names_left, right_table_keys, onexpr.key_names_right); |
| 1261 | } |
| 1262 | } |
| 1263 | |
| 1264 | JoinResultPtr HashJoin::joinBlock(Block block) |
| 1265 | { |
nothing calls this directly
no test coverage detected