Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion datafusion/physical-plan/src/sorts/sort.rs
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,13 @@ impl SortExec {
self
}

/// Whether this `SortExec` preserves partitioning of the children
/// Modify how many rows to include in the result
///
/// If None, then all rows will be returned, in sorted order.
/// If Some, then only the top `fetch` rows will be returned.
/// This can reduce the memory pressure required by the sort
/// operation since rows that are not going to be included
/// can be dropped.
pub fn with_fetch(mut self, fetch: Option<usize>) -> Self {
self.fetch = fetch;
self
Expand Down