[FEAT MERGE] merge table insert overwrite

This commit is contained in:
Minionyh
2024-06-18 02:35:49 +00:00
committed by ob-robot
parent 046dac469a
commit ca53fe797d
37 changed files with 271 additions and 36 deletions

View File

@ -11394,6 +11394,9 @@ int ObLogPlan::add_explain_note()
} else if (NULL != (insert_plan = dynamic_cast<ObInsertLogPlan*>(this))
&& insert_plan->is_direct_insert()
&& OB_FALSE_IT(opt_ctx.add_plan_note(DIRECT_MODE_INSERT_INTO_SELECT))) {
} else if (NULL != (insert_plan = dynamic_cast<ObInsertLogPlan*>(this))
&& insert_plan->is_insert_overwrite()
&& OB_FALSE_IT(opt_ctx.add_plan_note(INSERT_OVERWRITE_TABLE))) {
}
return ret;
}