Revert "[fix](vectorized) Support outer join for vectorized exec engine (#10323)" (#10424)

This reverts commit 2cc670dba697a330358ae7d485d856e4b457c679.
This commit is contained in:
Gabriel
2022-06-25 22:18:08 +08:00
committed by GitHub
parent 7fe4b20da3
commit eebfbd0c91
27 changed files with 274 additions and 619 deletions

View File

@ -214,9 +214,9 @@ Status ExecNode::prepare(RuntimeState* state) {
_mem_tracker);
if (_vconjunct_ctx_ptr) {
RETURN_IF_ERROR((*_vconjunct_ctx_ptr)->prepare(state, _row_descriptor, expr_mem_tracker()));
RETURN_IF_ERROR((*_vconjunct_ctx_ptr)->prepare(state, row_desc(), expr_mem_tracker()));
}
RETURN_IF_ERROR(Expr::prepare(_conjunct_ctxs, state, _row_descriptor, expr_mem_tracker()));
RETURN_IF_ERROR(Expr::prepare(_conjunct_ctxs, state, row_desc(), expr_mem_tracker()));
// TODO(zc):
// AddExprCtxsToFree(_conjunct_ctxs);