fix ObRawExpr::add_child_flags bug

This commit is contained in:
obdev
2023-09-08 12:38:14 +08:00
committed by ob-robot
parent ca21045824
commit ff1d83df68
9 changed files with 45 additions and 36 deletions

View File

@ -479,8 +479,8 @@ int ObStaticEngineCG::clear_all_exprs_specific_flag(
if (OB_ISNULL(exprs.at(i))) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("expr is null", K(ret), K(i), K(exprs));
} else {
exprs.at(i)->clear_flag(flag);
} else if (OB_FAIL(exprs.at(i)->clear_flag(flag))) {
LOG_WARN("failed to clear flag", K(ret));
}
}