imay commented on a change in pull request #531: Add cpu and io indicates to audit log URL: https://github.com/apache/incubator-doris/pull/531#discussion_r248168875
########## File path: be/src/exec/exchange_node.cpp ########## @@ -95,6 +96,12 @@ Status ExchangeNode::open(RuntimeState* state) { return Status::OK; } +Status ExchangeNode::collect_query_statistics(QueryStatistics* statistics) { + RETURN_IF_ERROR(ExecNode::collect_query_statistics(statistics)); + _sub_plan_query_statistics_recvr->add_to(statistics); Review comment: statistics.merge() ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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 With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org