adriangb commented on code in PR #16641: URL: https://github.com/apache/datafusion/pull/16641#discussion_r2180411847
########## datafusion/physical-optimizer/src/enforce_sorting/sort_pushdown.rs: ########## @@ -216,7 +218,28 @@ fn pushdown_sorts_helper( fn pushdown_requirement_to_children( plan: &Arc<dyn ExecutionPlan>, parent_required: OrderingRequirements, + parent_fetch: Option<usize>, ) -> Result<Option<Vec<Option<OrderingRequirements>>>> { + // Only attempt to push down TopK when there is an upstream LIMIT + if parent_fetch.is_some() { Review Comment: I guess this code is already assuming that `parent` is some operator that has a limit. So yeah I agree with you not worth refactoring for this change, if there are still issues we can address them later. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org