github-actions[bot] commented on code in PR #27733:
URL: https://github.com/apache/doris/pull/27733#discussion_r1408672058
##########
be/src/pipeline/exec/union_source_operator.cpp:
##########
@@ -154,6 +154,15 @@ std::shared_ptr<UnionSharedState>
UnionSourceLocalState::create_shared_state() {
return data_queue;
}
+std::string UnionSourceLocalState::debug_string(int indentation_level) const {
+ fmt::memory_buffer debug_string_buffer;
Review Comment:
warning: method 'debug_string' can be made static
[readability-convert-member-functions-to-static]
```suggestion
{
```
be/src/pipeline/exec/union_source_operator.h:90:
```diff
- [[nodiscard]] std::string debug_string(int indentation_level = 0)
const override;
+ [[nodiscard]] static std::string debug_string(int indentation_level =
0) override;
```
--
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]