fix expr pullup bug

This commit is contained in:
yinyj17
2023-07-25 11:18:42 +00:00
committed by ob-robot
parent 738fda16a5
commit b0576be11c

View File

@ -269,7 +269,7 @@ int ObExprNodeMap::add_expr_map(ObRawExpr *expr)
bool is_exist = false;
if (OB_ISNULL(expr)) {
ret = OB_ERR_UNEXPECTED;
} else if (expr->is_const_or_param_expr()) {
} else if (expr->is_const_expr()) {
// do nothing
} else {
ExprCounter counter;