[CP] fix set partition wise and duplicate table bug

This commit is contained in:
zzg19950727
2024-02-09 21:51:56 +00:00
committed by ob-robot
parent a86074f97a
commit a8cc1ed620
6 changed files with 29 additions and 33 deletions

View File

@ -850,10 +850,7 @@ int ObLogSet::construct_pq_set_hint(ObPQSetHint &hint)
int ObLogSet::compute_op_parallel_and_server_info()
{
int ret = OB_SUCCESS;
bool is_partition_wise = DistAlgo::DIST_PARTITION_WISE == get_distributed_algo()
|| DistAlgo::DIST_EXT_PARTITION_WISE == get_distributed_algo()
|| DistAlgo::DIST_SET_PARTITION_WISE == get_distributed_algo();
if (OB_FAIL(compute_normal_multi_child_parallel_and_server_info(is_partition_wise))) {
if (OB_FAIL(compute_normal_multi_child_parallel_and_server_info())) {
LOG_WARN("failed to compute multi child parallel and server info", K(ret), K(get_distributed_algo()));
}
return ret;