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


##########
be/src/runtime/buffer_control_block.h:
##########
@@ -17,6 +17,8 @@
 
 #pragma once
 
+#include <arrow/type.h>

Review Comment:
   warning: 'arrow/type.h' file not found [clang-diagnostic-error]
   ```cpp
   #include <arrow/type.h>
            ^
   ```
   



##########
be/src/service/arrow_flight/arrow_flight_batch_reader.cpp:
##########
@@ -18,52 +18,254 @@
 #include "service/arrow_flight/arrow_flight_batch_reader.h"
 
 #include <arrow/status.h>
+#include <gen_cpp/internal_service.pb.h>
+
+#include <utility>
 
-#include "arrow/builder.h"
 #include "runtime/exec_env.h"
 #include "runtime/result_buffer_mgr.h"
+#include "service/backend_options.h"
+#include "util/arrow/block_convertor.h"
 #include "util/arrow/row_batch.h"
 #include "util/arrow/utils.h"
+#include "util/brpc_client_cache.h"
+#include "vec/core/block.h"
+
+namespace doris::flight {
+
+constexpr size_t BRPC_CONTROLLER_TIMEOUT_MS = 10 * 1000;
+
+ArrowFlightBatchReaderBase::ArrowFlightBatchReaderBase(
+        const std::shared_ptr<QueryStatement>& statement)
+        : _statement(statement) {}
+
+std::shared_ptr<arrow::Schema> ArrowFlightBatchReaderBase::schema() const {
+    return _schema;
+}
 
-namespace doris {
-namespace flight {
+arrow::Status ArrowFlightBatchReaderBase::_return_invalid_status(const 
std::string& msg) {
+    std::string status_msg =
+            fmt::format("ArrowFlightBatchReader {}, packet_seq={}, 
result={}:{}, finistId={}", msg,
+                        _packet_seq, _statement->result_addr.hostname, 
_statement->result_addr.port,
+                        print_id(_statement->query_id));
+    LOG(WARNING) << status_msg;
+    return arrow::Status::Invalid(status_msg);
+}
 
-std::shared_ptr<arrow::Schema> ArrowFlightBatchReader::schema() const {
-    return schema_;
+ArrowFlightBatchReaderBase::~ArrowFlightBatchReaderBase() {

Review Comment:
   warning: use '= default' to define a trivial destructor 
[modernize-use-equals-default]
   ```cpp
   ArrowFlightBatchReaderBase::~ArrowFlightBatchReaderBase() {
                               ^
   ```
   



##########
be/src/runtime/result_buffer_mgr.h:
##########
@@ -17,7 +17,9 @@
 
 #pragma once
 
+#include <cctz/time_zone.h>

Review Comment:
   warning: 'cctz/time_zone.h' file not found [clang-diagnostic-error]
   ```cpp
   #include <cctz/time_zone.h>
            ^
   ```
   



##########
be/src/service/arrow_flight/arrow_flight_batch_reader.h:
##########
@@ -17,40 +17,82 @@
 
 #pragma once
 
+#include <cctz/time_zone.h>

Review Comment:
   warning: 'cctz/time_zone.h' file not found [clang-diagnostic-error]
   ```cpp
   #include <cctz/time_zone.h>
            ^
   ```
   



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to