imay commented on a change in pull request #1737: Unify the msg of 'Memory 
exceed limit'
URL: https://github.com/apache/incubator-doris/pull/1737#discussion_r319941218
 
 

 ##########
 File path: be/src/exec/partitioned_aggregation_node.cc
 ##########
 @@ -232,8 +232,9 @@ Status PartitionedAggregationNode::open(RuntimeState* 
state) {
     bool eos = false;
     do {
         RETURN_IF_CANCELLED(state);
-        // RETURN_IF_ERROR(QueryMaintenance(state));
-        RETURN_IF_ERROR(state->check_query_state());
+        std::stringstream msg;
+        msg << "Partitioned aggregation, while getting next from child 0.";
+        RETURN_IF_ERROR(state->check_query_state(msg.str()));
 
 Review comment:
   ```suggestion
           RETURN_IF_ERROR(state->check_query_state("Partitioned aggregation, 
while getting next from child 0."));
   ```

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to