revert some conflicting code

This commit is contained in:
chenhuiming
2022-07-15 12:24:00 +08:00
parent d9fe19b91b
commit 55cfa99aef
2 changed files with 12 additions and 12 deletions

View File

@ -188,7 +188,7 @@ int ObRawExprCopier::add_expr(const ObRawExpr *from,
if (OB_SUCC(ret)) {
if (OB_FAIL(copied_exprs_.set_refactored(reinterpret_cast<uint64_t>(from),
reinterpret_cast<uint64_t>(to)))) {
LOG_WARN("failed to add copied expr into map", K(ret));
LOG_WARN("faield to add copied expr into map", K(ret));
} else if (OB_FAIL(new_exprs_.set_refactored(reinterpret_cast<uint64_t>(to)))) {
LOG_WARN("failed to add copied expr into set", K(ret));
}
@ -251,7 +251,7 @@ int ObRawExprCopier::do_copy_expr(const ObRawExpr *old_expr,
/**
* @brief ObRawExprCopier::copy_on_replace
* @param from_expr : the input expr to be replaced
* @param to_expr : the output expr generated by replacing the input expr
* @param to_expr : the output expr generaetd by replacing the input expr
* @param replacer : tells how to replace a expr node
* @return
*/