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

Method new

datafusion/physical-expr-common/src/sort_expr.rs:89–91  ·  view source on GitHub ↗

Create a new PhysicalSortExpr

(expr: Arc<dyn PhysicalExpr>, options: SortOptions)

Source from the content-addressed store, hash-verified

87impl PhysicalSortExpr {
88 /// Create a new PhysicalSortExpr
89 pub fn new(expr: Arc<dyn PhysicalExpr>, options: SortOptions) -> Self {
90 Self { expr, options }
91 }
92
93 /// Create a new PhysicalSortExpr with default [`SortOptions`]
94 pub fn new_default(expr: Arc<dyn PhysicalExpr>) -> Self {

Callers

nothing calls this directly

Calls 4

newFunction · 0.85
into_iterMethod · 0.45
pushMethod · 0.45
is_emptyMethod · 0.45

Tested by

no test coverage detected