dblink_write implement [FEAT MERGE]
Co-authored-by: zzg19950727 <1071026277@qq.com> Co-authored-by: xianyu-w <707512433@qq.com>
This commit is contained in:
@ -257,7 +257,7 @@ int ObSqlPlan::get_plan_outline_info_one_line(PlanText &plan_text,
|
||||
LOG_WARN("failed to get plan tree outline", K(ret));
|
||||
} else if (OB_FAIL(query_hint.print_transform_hints(plan_text))) {
|
||||
LOG_WARN("failed to print all transform hints", K(ret));
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(plan_text))) {
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(plan_text, /*ignore_parallel*/false))) {
|
||||
LOG_WARN("failed to print global hint", K(ret));
|
||||
} else {
|
||||
BUF_PRINT_CONST_STR("END_OUTLINE_DATA*/", plan_text);
|
||||
@ -442,7 +442,7 @@ int ObSqlPlan::get_plan_used_hint_info(PlanText &plan_text,
|
||||
LOG_WARN("failed to print qb name hints", K(ret));
|
||||
} else if (OB_FAIL(query_hint.print_transform_hints(temp_text))) {
|
||||
LOG_WARN("failed to print all transform hints", K(ret));
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(temp_text))) {
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(temp_text, false))) {
|
||||
LOG_WARN("failed to print global hint", K(ret));
|
||||
} else {
|
||||
BUF_PRINT_CONST_STR("\n*/", temp_text);
|
||||
@ -532,7 +532,7 @@ int ObSqlPlan::get_plan_outline_info(PlanText &plan_text,
|
||||
LOG_WARN("failed to get plan tree outline", K(ret));
|
||||
} else if (OB_FAIL(query_hint.print_transform_hints(temp_text))) {
|
||||
LOG_WARN("failed to print all transform hints", K(ret));
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(temp_text))) {
|
||||
} else if (OB_FAIL(query_hint.get_global_hint().print_global_hint(temp_text, false))) {
|
||||
LOG_WARN("failed to print global hint", K(ret));
|
||||
} else {
|
||||
BUF_PRINT_CONST_STR("\n END_OUTLINE_DATA\n*/", temp_text);
|
||||
|
||||
Reference in New Issue
Block a user