[pipeline](exec) Support shared scan in jdbc and odbc scan node (#22826)

Support shared scan in jdbc and odbc scan node to improve exec performance
This commit is contained in:
HappenLee
2023-08-10 18:34:45 +08:00
committed by GitHub
parent 4a6f63e210
commit a1223218f3
5 changed files with 14 additions and 8 deletions

View File

@ -504,6 +504,8 @@ void ExecNode::collect_scan_nodes(vector<ExecNode*>* nodes) {
collect_nodes(TPlanNodeType::DATA_GEN_SCAN_NODE, nodes);
collect_nodes(TPlanNodeType::FILE_SCAN_NODE, nodes);
collect_nodes(TPlanNodeType::META_SCAN_NODE, nodes);
collect_nodes(TPlanNodeType::JDBC_SCAN_NODE, nodes);
collect_nodes(TPlanNodeType::ODBC_SCAN_NODE, nodes);
}
void ExecNode::init_runtime_profile(const std::string& name) {