MCPcopy Create free account
hub / github.com/apache/datafusion / sort

Method sort

datafusion/expr/src/logical_plan/builder.rs:806–811  ·  view source on GitHub ↗
(
        self,
        sorts: impl IntoIterator<Item = impl Into<SortExpr>> + Clone,
    )

Source from the content-addressed store, hash-verified

804 }
805
806 pub fn sort(
807 self,
808 sorts: impl IntoIterator<Item = impl Into<SortExpr>> + Clone,
809 ) -> Result<Self> {
810 self.sort_with_limit(sorts, None)
811 }
812
813 /// Apply a sort
814 pub fn sort_with_limit(

Callers 4

sort_byMethod · 0.45
plan_builder_sortFunction · 0.45
sortFunction · 0.45

Calls 1

sort_with_limitMethod · 0.80

Tested by 2

plan_builder_sortFunction · 0.36