github-actions[bot] commented on code in PR #33643:
URL: https://github.com/apache/doris/pull/33643#discussion_r1604341840


##########
be/src/pipeline/exec/operator.cpp:
##########
@@ -201,11 +201,44 @@ Status OperatorXBase::prepare(RuntimeState* state) {
 
     if (_child_x && !is_source()) {
         RETURN_IF_ERROR(_child_x->prepare(state));
+        RETURN_IF_ERROR(check_upstream_row_desc_match());
     }
 
     return Status::OK();
 }
 
+Status OperatorXBase::check_upstream_row_desc_match() {

Review Comment:
   warning: method 'check_upstream_row_desc_match' can be made const 
[readability-make-member-function-const]
   
   ```suggestion
   Status OperatorXBase::check_upstream_row_desc_match() const {
   ```
   
   be/src/pipeline/exec/operator.h:727:
   ```diff
   -     Status check_upstream_row_desc_match();
   +     Status check_upstream_row_desc_match() const;
   ```
   



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

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to