fix master failed cases

This commit is contained in:
wangt1xiuyi
2023-06-13 02:18:03 +00:00
committed by ob-robot
parent 05295dd0f6
commit 433616c763
4 changed files with 9 additions and 4 deletions

View File

@ -1769,6 +1769,10 @@ int ObLogTableScan::print_used_hint(PlanText &plan_text)
&& OpParallelRule::OP_HINT_DOP == get_op_parallel_rule()
&& OB_FAIL(table_hint->parallel_hint_->print_hint(plan_text))) {
LOG_WARN("failed to print table parallel hint", K(ret));
} else if (NULL != table_hint->dynamic_sampling_hint_ &&
table_hint->dynamic_sampling_hint_->get_dynamic_sampling() != ObGlobalHint::UNSET_DYNAMIC_SAMPLING &&
OB_FAIL(table_hint->dynamic_sampling_hint_->print_hint(plan_text))) {
LOG_WARN("failed to print dynamic sampling hint", K(ret));
} else if (NULL != table_hint->use_das_hint_
&& use_das() == table_hint->use_das_hint_->is_enable_hint()
&& OB_FAIL(table_hint->use_das_hint_->print_hint(plan_text))) {