Expand description
Merge sort logical plan for distributed query execution, roughly corresponding to the
SortPreservingMergeExec
operator in datafusion
Structs§
- MergeSort Logical Plan, have same field as
Sort
, but indicate it is a merge sort, which assume each input partition is a sorted stream, and will useSortPreserveingMergeExec
to merge them into a single sorted stream.
Functions§
- Turn
Sort
intoMergeSort
if possible