fix bug for gi_flag in ob_log_set

This commit is contained in:
lck0 2021-08-29 11:02:55 +08:00 committed by wangzelin.wzl
parent 9812af88fb
commit 5c46b54684
2 changed files with 3 additions and 13 deletions

View File

@ -261,7 +261,7 @@ int ObGranulePump::try_fetch_pwj_tasks(
break;
default:
ret = OB_ERR_UNEXPECTED;
LOG_WARN("unexpected type", K(ret));
LOG_WARN("unexpected type", K(ret), K(splitter_type_));
}
}
return ret;
@ -300,7 +300,7 @@ int ObGranulePump::fetch_granule_task(
break;
default:
ret = OB_ERR_UNEXPECTED;
LOG_WARN("unexpected type", K(ret));
LOG_WARN("unexpected type", K(ret), K(splitter_type_));
}
}
return ret;

View File

@ -1203,17 +1203,7 @@ int ObLogSet::allocate_granule_post(AllocGIContext& ctx)
LOG_WARN("set granule nodes affinity failed", K(ret));
}
LOG_TRACE("set right child gi to affinity");
} else if (DIST_PULL_TO_LOCAL == set_dist_algo_) {
ObLogicalOperator* op = NULL;
if (OB_FAIL(get_child(second_child)->find_first_recursive(LOG_GRANULE_ITERATOR, op))) {
LOG_WARN("find granule iterator in right failed", K(ret));
} else if (NULL == op) {
// granule iterator not found, do nothing
} else {
static_cast<ObLogGranuleIterator*>(op)->add_flag(GI_ACCESS_ALL);
}
} else { /*do nothing*/
}
} else { /*do nothing*/ }
return ret;
}