github-actions[bot] commented on code in PR #17753:
URL: https://github.com/apache/doris/pull/17753#discussion_r1171060260
##########
be/test/olap/tablet_test.cpp:
##########
@@ -269,7 +267,7 @@ TEST_F(TestTablet, pad_rowset) {
ASSERT_FALSE(_tablet->capture_rs_readers(version, &readers).ok());
readers.clear();
- PadRowsetAction action;
+ PadRowsetAction action(nullptr);
action._pad_rowset(_tablet, version);
Review Comment:
warning: '_pad_rowset' is a private member of 'doris::PadRowsetAction'
[clang-diagnostic-error]
```cpp
action._pad_rowset(_tablet, version);
^
```
**be/src/http/action/pad_rowset_action.h:45:** declared private here
```cpp
Status _pad_rowset(TabletSharedPtr tablet, const Version& version);
^
```
--
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]