This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push:
new 96de99525e [compile&build]clang compile errors fix (#10201)
96de99525e is described below
commit 96de99525e501a319bf16ca25d3e1fbeff77c862
Author: camby <[email protected]>
AuthorDate: Fri Jun 17 08:41:25 2022 +0800
[compile&build]clang compile errors fix (#10201)
Co-authored-by: cambyzju <[email protected]>
---
be/src/vec/exec/vodbc_scan_node.h | 2 +-
be/src/vec/exec/volap_scanner.h | 2 --
be/src/vec/exec/vschema_scan_node.cpp | 1 -
be/src/vec/exec/vschema_scan_node.h | 1 -
4 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/be/src/vec/exec/vodbc_scan_node.h
b/be/src/vec/exec/vodbc_scan_node.h
index b4fb1204f0..ea3148ce21 100644
--- a/be/src/vec/exec/vodbc_scan_node.h
+++ b/be/src/vec/exec/vodbc_scan_node.h
@@ -44,7 +44,7 @@ public:
// Close the odbc_scanner, and report errors.
virtual Status close(RuntimeState* state) override;
// No use
- virtual Status set_scan_ranges(const std::vector<TScanRangeParams>&
scan_ranges);
+ virtual Status set_scan_ranges(const std::vector<TScanRangeParams>&
scan_ranges) override;
const TupleDescriptor* get_tuple_desc() { return _tuple_desc; }
TextConverter* get_text_converter() { return _text_converter.get(); }
ODBCConnector* get_odbc_scanner() { return _odbc_scanner.get(); }
diff --git a/be/src/vec/exec/volap_scanner.h b/be/src/vec/exec/volap_scanner.h
index 12a059b37f..22cab48006 100644
--- a/be/src/vec/exec/volap_scanner.h
+++ b/be/src/vec/exec/volap_scanner.h
@@ -134,8 +134,6 @@ private:
std::vector<SlotDescriptor*> _query_slots;
// time costed and row returned statistics
- ExecNode::EvalConjunctsFn _eval_conjuncts_fn = nullptr;
-
int64_t _num_rows_read = 0;
int64_t _raw_rows_read = 0;
int64_t _compressed_bytes_read = 0;
diff --git a/be/src/vec/exec/vschema_scan_node.cpp
b/be/src/vec/exec/vschema_scan_node.cpp
index ff6d329133..bacf6b7d56 100644
--- a/be/src/vec/exec/vschema_scan_node.cpp
+++ b/be/src/vec/exec/vschema_scan_node.cpp
@@ -41,7 +41,6 @@ VSchemaScanNode::VSchemaScanNode(ObjectPool* pool, const
TPlanNode& tnode,
_tuple_pool(nullptr),
_schema_scanner(nullptr),
_src_tuple(nullptr),
- _dest_tuple(nullptr),
_src_single_tuple(nullptr),
_dest_single_tuple(nullptr) {}
diff --git a/be/src/vec/exec/vschema_scan_node.h
b/be/src/vec/exec/vschema_scan_node.h
index d428e77c9b..3fadb242f5 100644
--- a/be/src/vec/exec/vschema_scan_node.h
+++ b/be/src/vec/exec/vschema_scan_node.h
@@ -78,7 +78,6 @@ private:
std::unique_ptr<SchemaScanner> _schema_scanner;
// Current tuple.
doris::Tuple* _src_tuple;
- doris::Tuple* _dest_tuple;
// Map from index in slots to column of schema table.
std::vector<int> _index_map;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]