github-actions[bot] commented on code in PR #30529:
URL: https://github.com/apache/doris/pull/30529#discussion_r1469499673
##########
be/src/olap/memtable_flush_executor.h:
##########
@@ -75,15 +75,20 @@ class FlushToken {
const MemTableStat& memtable_stat() { return _memtable_stat; }
+private:
+ void _run_memtable_flush_task(std::unique_ptr<MemTable> memtable_ptr,
int32_t segment_id,
+ int64_t submit_task_time);
+ void _shutdown_flush_token() { _shutdown.store(true); }
+ bool _is_shutdown() { return _shutdown.load(); }
+ void _wait_running_task_finish();
+
private:
Review Comment:
warning: redundant access specifier has the same accessibility as the
previous access specifier [readability-redundant-access-specifiers]
```suggestion
```
<details>
<summary>Additional context</summary>
**be/src/olap/memtable_flush_executor.h:77:** previously declared here
```cpp
private:
^
```
</details>
--
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]