github-actions[bot] commented on code in PR #17586:
URL: https://github.com/apache/doris/pull/17586#discussion_r1129704863


##########
be/src/io/fs/broker_file_system.cpp:
##########
@@ -84,12 +84,21 @@
     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(
+            new BrokerWriter(ExecEnv::GetInstance(), broker_addrs, 
_broker_prop, path, 0 /* offset */));

Review Comment:
   warning: unknown type name 'BrokerWriter' [clang-diagnostic-error]
   ```cpp
               new BrokerWriter(ExecEnv::GetInstance(), broker_addrs, 
_broker_prop, path, 0 /* offset */));
                   ^
   ```
   



-- 
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]

Reply via email to