EmmyMiao87 commented on a change in pull request #3436: URL: https://github.com/apache/incubator-doris/pull/3436#discussion_r417731508
########## File path: be/src/exec/assert_num_rows_node.cpp ########## @@ -45,6 +45,7 @@ Status AssertNumRowsNode::prepare(RuntimeState* state) { Status AssertNumRowsNode::open(RuntimeState* state) { SCOPED_TIMER(_runtime_profile->total_time_counter()); RETURN_IF_ERROR(ExecNode::open(state)); + RETURN_IF_ERROR(child(0)->open(state)); Review comment: Added. Actually, I think most of expr node should call the child.open in open function. This is my mistake. ---------------------------------------------------------------- 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. 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