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

Class Sort

datafusion/expr/src/expr.rs:1014–1021  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1012/// SORT expression
1013#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1014pub struct Sort {
1015 /// The expression to sort on
1016 pub expr: Expr,
1017 /// The direction of the sort
1018 pub asc: bool,
1019 /// Whether to put Nulls before all other data values
1020 pub nulls_first: bool,
1021}
1022
1023impl Sort {
1024 /// Create a new Sort expression

Callers 13

optimize_subquery_sortFunction · 0.50
normalize_union_schemaFunction · 0.50
try_from_logical_planMethod · 0.50
try_from_sort_execMethod · 0.50
from_sortFunction · 0.50
rewriteMethod · 0.50
rewriteMethod · 0.50
rewriteMethod · 0.50
try_optimize_sortMethod · 0.50
coerce_utf8view_outputFunction · 0.50

Calls

no outgoing calls

Tested by 2

coerce_utf8view_outputFunction · 0.40
coerce_binaryview_outputFunction · 0.40

Used in the wild real call sites across dependent graphs

searching dependent graphs…