This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 688771cedd [Bug](pipeline) fix pipeline jdbc coredump in regression
test (#23037)
688771cedd is described below
commit 688771ceddfdce3e59a143534d6e49b0285b9a5b
Author: HappenLee <[email protected]>
AuthorDate: Wed Aug 16 21:57:51 2023 +0800
[Bug](pipeline) fix pipeline jdbc coredump in regression test (#23037)
---
be/src/pipeline/pipeline_fragment_context.cpp | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/be/src/pipeline/pipeline_fragment_context.cpp
b/be/src/pipeline/pipeline_fragment_context.cpp
index 86e01ef3b5..bd1df5a95a 100644
--- a/be/src/pipeline/pipeline_fragment_context.cpp
+++ b/be/src/pipeline/pipeline_fragment_context.cpp
@@ -282,11 +282,8 @@ Status PipelineFragmentContext::prepare(const
doris::TPipelineFragmentParams& re
typeid(*node) == typeid(vectorized::NewFileScanNode) ||
typeid(*node) == typeid(vectorized::NewOdbcScanNode) ||
typeid(*node) == typeid(vectorized::NewEsScanNode) ||
- typeid(*node) == typeid(vectorized::VMetaScanNode)
-#ifdef LIBJVM
- || typeid(*node) == typeid(vectorized::NewJdbcScanNode)
-#endif
- ) {
+ typeid(*node) == typeid(vectorized::VMetaScanNode) ||
+ typeid(*node) == typeid(vectorized::NewJdbcScanNode)) {
auto* scan_node =
static_cast<vectorized::VScanNode*>(scan_nodes[i]);
auto scan_ranges =
find_with_default(local_params.per_node_scan_ranges, scan_node->id(),
no_scan_ranges);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]