github-actions[bot] commented on code in PR #17586:
URL: https://github.com/apache/doris/pull/17586#discussion_r1129704855
##########
be/src/io/fs/broker_file_system.cpp:
##########
@@ -84,12 +84,21 @@ Status BrokerFileSystem::connect() {
return status;
}
-Status BrokerFileSystem::open_file(const Path& path, FileReaderSPtr* reader,
- IOContext* /*io_ctx*/) {
+Status BrokerFileSystem::create_file_impl(const Path& path, FileWriterPtr*
writer) {
+ std::vector<TNetworkAddress> broker_addrs;
+ broker_addrs.push_back(_broker_addr);
+ std::unique_ptr<BrokerWriter> broker_writer(
Review Comment:
warning: use of undeclared identifier 'BrokerWriter' [clang-diagnostic-error]
```cpp
std::unique_ptr<BrokerWriter> broker_writer(
^
```
--
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]