[CP] fix a core casued by execution stage using resolve stage memory

This commit is contained in:
obdev
2023-06-13 14:12:30 +00:00
committed by ob-robot
parent cf4bb72e84
commit 58193a69d4
4 changed files with 53 additions and 0 deletions

View File

@ -347,6 +347,11 @@ int ObAlterTableResolver::resolve(const ParseNode &parse_tree)
LOG_WARN("resolve hints failed", K(ret));
}
}
if (OB_SUCC(ret)){
if (OB_FAIL(deep_copy_string_in_part_expr(get_alter_table_stmt()))) {
LOG_WARN("failed to deep copy string in part expr");
}
}
}
DEBUG_SYNC(HANG_BEFORE_RESOLVER_FINISH);
return ret;