Expand description
Merge sort logical plan for distributed query execution, roughly corresponding to the
SortPreservingMergeExec operator in datafusion
Structs§
- Merge
Sort Logical Plan - 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 useSortPreserveingMergeExecto merge them into a single sorted stream.
Functions§
- merge_
sort_ transformer - Turn
SortintoMergeSortif possible