CP 3.1 commit to open source

This commit is contained in:
leslieyuchen
2021-07-27 21:21:14 +08:00
committed by wangzelin.wzl
parent 2b51e4f001
commit 09edba0ff6
20 changed files with 117 additions and 107 deletions

View File

@ -36,23 +36,6 @@ int ObLogDelete::allocate_expr_pre(ObAllocExprContext& ctx)
return ret;
}
int ObLogDelete::allocate_expr_post(ObAllocExprContext& ctx)
{
int ret = OB_SUCCESS;
if (is_pdml() && is_index_maintenance()) {
// handle shadow pk column
if (OB_FAIL(alloc_shadow_pk_column_for_pdml(ctx))) {
LOG_WARN("failed alloc generated column for pdml index maintain", K(ret));
}
}
if (OB_SUCC(ret)) {
if (OB_FAIL(ObLogicalOperator::allocate_expr_post(ctx))) {
LOG_WARN("failed to allocate expr post for delete", K(ret));
}
}
return ret;
}
const char* ObLogDelete::get_name() const
{
const char* name = NULL;