This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch dev_syxj_2 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 54c92ef12b4e30ea021eb3e49d04687a13c9a2ea 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 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]
