Fix local order bug

This commit is contained in:
xianyu-w
2024-07-09 11:48:33 +00:00
committed by ob-robot
parent eb492751bd
commit a60aed35b7
4 changed files with 10 additions and 8 deletions

View File

@ -485,7 +485,8 @@ int ObLogWindowFunction::compute_op_ordering()
is_local_order_ = (range_dist_parallel_ || is_fully_partition_wise()
|| (get_sort_keys().empty()
&& child->get_is_local_order())
) && !get_op_ordering().empty();
) && !get_op_ordering().empty()
&& !is_range_order_;
}
return ret;
}