[fix](vectorized-engine) fix core when enable_vectorized_engine open (#7159)
This commit is contained in:
@ -338,6 +338,10 @@ Status ExecNode::create_tree_helper(RuntimeState* state, ObjectPool* pool,
|
||||
|
||||
Status ExecNode::create_node(RuntimeState* state, ObjectPool* pool, const TPlanNode& tnode,
|
||||
const DescriptorTbl& descs, ExecNode** node) {
|
||||
if (state->enable_vectorized_exec()) {
|
||||
return Status::InternalError("unsupport enable_vectorized_engine");
|
||||
}
|
||||
|
||||
std::stringstream error_msg;
|
||||
|
||||
VLOG_CRITICAL << "tnode:\n" << apache::thrift::ThriftDebugString(tnode);
|
||||
|
||||
Reference in New Issue
Block a user