Skip to content

Commit

Permalink
[Bug](pipeline) fix pipeline jdbc coredump in regression test (#22892)
Browse files Browse the repository at this point in the history
Issue Number: Bug fix pipeline jdbc coredump in regression test
  • Loading branch information
HappenLee authored Aug 13, 2023
1 parent 49d5039 commit 4803762
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions be/src/pipeline/pipeline_fragment_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4803762

Please sign in to comment.