[API changed](parser) Remove merge join syntax (#9795)
Remove merge join sql and merge join node
This commit is contained in:
@ -37,7 +37,6 @@
|
||||
#include "exec/exchange_node.h"
|
||||
#include "exec/hash_join_node.h"
|
||||
#include "exec/intersect_node.h"
|
||||
#include "exec/merge_join_node.h"
|
||||
#include "exec/merge_node.h"
|
||||
#include "exec/mysql_scan_node.h"
|
||||
#include "exec/odbc_scan_node.h"
|
||||
@ -475,10 +474,6 @@ Status ExecNode::create_node(RuntimeState* state, ObjectPool* pool, const TPlanN
|
||||
}
|
||||
return Status::OK();
|
||||
|
||||
case TPlanNodeType::MERGE_JOIN_NODE:
|
||||
*node = pool->add(new MergeJoinNode(pool, tnode, descs));
|
||||
return Status::OK();
|
||||
|
||||
case TPlanNodeType::EMPTY_SET_NODE:
|
||||
if (state->enable_vectorized_exec()) {
|
||||
*node = pool->add(new vectorized::VEmptySetNode(pool, tnode, descs));
|
||||
|
||||
Reference in New Issue
Block a user