You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
in fn replace_with_partial_sort, there is a check
if !child.execution_mode().is_unbounded(){returnOk(plan);}
Isn't it better to have partial sorts even if the source is bounded?
Describe the solution you'd like
Remove this check and always convert sorts to partial sorts if the requirements and properties allow
Describe alternatives you've considered
No response
Additional context
I guess it would heavily depend on the way how the data is ordered, and what is the rest of the plan, but a few benchmark results perhaps will make it more clear
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge?
in
fn replace_with_partial_sort
, there is a checkIsn't it better to have partial sorts even if the source is bounded?
Describe the solution you'd like
Remove this check and always convert sorts to partial sorts if the requirements and properties allow
Describe alternatives you've considered
No response
Additional context
I guess it would heavily depend on the way how the data is ordered, and what is the rest of the plan, but a few benchmark results perhaps will make it more clear
The text was updated successfully, but these errors were encountered: