fix generate partition join filter plan bug

This commit is contained in:
zzg19950727
2023-05-08 02:38:37 +00:00
committed by ob-robot
parent cbc4f744dd
commit 1d1d1e009e
11 changed files with 61 additions and 91 deletions

View File

@ -77,7 +77,7 @@ int ObLogDistinct::compute_op_ordering()
} else if (OB_FAIL(ObLogicalOperator::compute_op_ordering())) {
LOG_WARN("failed to compute op ordering", K(ret));
} else {
is_local_order_ = is_fully_paratition_wise() && !get_op_ordering().empty();
is_local_order_ = is_fully_partition_wise() && !get_op_ordering().empty();
}
return ret;
}