github-actions[bot] commented on code in PR #28395:
URL: https://github.com/apache/doris/pull/28395#discussion_r1426268241
##########
be/src/vec/exprs/vexpr.cpp:
##########
@@ -444,19 +444,31 @@ std::string VExpr::debug_string() const {
out << " children=" << debug_string(_children);
}
- return out.str();
+ return limit_debug_string(out);
+}
+
+bool VExpr::check_string_within_limit(std::stringstream& out) {
Review Comment:
warning: method 'check_string_within_limit' can be made static
[readability-convert-member-functions-to-static]
```suggestion
static bool VExpr::check_string_within_limit(std::stringstream& out) {
```
--
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]