| 25 | namespace impala { |
| 26 | |
| 27 | inline void PartitionedHashJoinNode::ResetForProbe() { |
| 28 | current_probe_row_ = NULL; |
| 29 | probe_batch_pos_ = 0; |
| 30 | matched_probe_ = true; |
| 31 | hash_tbl_iterator_.SetAtEnd(); |
| 32 | ht_ctx_->expr_values_cache()->Reset(); |
| 33 | } |
| 34 | |
| 35 | // Must not be inlined during codegen since calls to this function from ProcessProbeBatch |
| 36 | // are removed by codegen if there are no conjuncts. |
nothing calls this directly
no test coverage detected