[fix] remove some internal urls and emails

This commit is contained in:
obdev
2023-03-17 20:55:23 +08:00
committed by ob-robot
parent e386747097
commit 8ce2f275c4
647 changed files with 905 additions and 905 deletions

View File

@ -92,7 +92,7 @@ int ForeignKeyHandle::do_handle(ObTableModifyOp &op,
// 1. handling update operator and
// 2. foreign key constraint is self reference
// need to change %new_row and %old_row
// (see https://aone.alibaba-inc.com/issue/17476162)
// (see
// xxx_row_res_info helps to restore row. restore row before get_next_row()
//op.fk_self_ref_row_res_infos_.reset();
for (int64_t i = 0; OB_SUCC(ret) && i < fk_arg.columns_.count(); i++) {
@ -355,7 +355,7 @@ int ForeignKeyHandle::cascade(ObTableModifyOp &op,
LOG_WARN("failed to begin nested session", K(ret));
} else {
// must call end_nested_session() if begin_nested_session() success.
// https://work.aone.alibaba-inc.com/issue/29621871
//
// skip modify_ctx.set_foreign_key_cascade when cascade update and self ref.
if (!(fk_arg.is_self_ref_ && !new_row.empty()) &&
OB_FAIL(op.set_foreign_key_cascade(true))) {
@ -535,7 +535,7 @@ ObTableModifyOp::ObTableModifyOp(ObExecContext &ctx,
{
obj_print_params_ = CREATE_OBJ_PRINT_PARAM(ctx_.get_my_session());
obj_print_params_.need_cast_expr_ = true;
// bugfix:https://work.aone.alibaba-inc.com/issue/36658497
// bugfix:
// in NO_BACKSLASH_ESCAPES, obj_print_sql<ObVarcharType> won't escape.
// We use skip_escape_ to indicate this case. It will finally be passed to ObHexEscapeSqlStr.
GET_SQL_MODE_BIT(IS_NO_BACKSLASH_ESCAPES, ctx_.get_my_session()->get_sql_mode(), obj_print_params_.skip_escape_);