This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 48037622cd [Bug](pipeline) fix pipeline jdbc coredump in regression
test (#22892)
48037622cd is described below
commit 48037622cd8dbf7a1ce685b64953d235de99c161
Author: HappenLee <[email protected]>
AuthorDate: Sun Aug 13 22:56:09 2023 +0800
[Bug](pipeline) fix pipeline jdbc coredump in regression test (#22892)
Issue Number: Bug fix pipeline jdbc coredump in regression test
---
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 ceaf70ac12..ae91ab3381 100644
--- a/be/src/pipeline/pipeline_fragment_context.cpp
+++ b/be/src/pipeline/pipeline_fragment_context.cpp
@@ -285,11 +285,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]