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


##########
be/src/pipeline/pipeline_x/operator.cpp:
##########
@@ -189,6 +190,38 @@ Status OperatorXBase::close(RuntimeState* state) {
     return result.value()->close(state);
 }
 
+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/pipeline_x/operator.h:346:
   ```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: 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

Reply via email to