EmmyMiao87 commented on a change in pull request #8618: URL: https://github.com/apache/incubator-doris/pull/8618#discussion_r834003318
########## File path: be/src/vec/exec/join/vhash_join_node.cpp ########## @@ -210,12 +210,24 @@ struct ProcessHashTableProbe { } // output probe side result column - void probe_side_output_column(MutableColumns& mcol, int column_length, int size) { - for (int i = 0; i < column_length; ++i) { - auto& column = _probe_block.get_by_position(i).column; - column->replicate(&_items_counts[0], size, *mcol[i]); +// void probe_side_output_column(MutableColumns& mcol, int column_length, int size) { +// for (int i = 0; i < column_length; ++i) { +// auto& column = _probe_block.get_by_position(i).column; +// column->replicate(&_items_counts[0], size, *mcol[i]); +// } +// } + + void probe_side_output_column(MutableColumns& mcol, std::vector<int> _left_output_slot_idx, int size) { Review comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org