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

Method extend

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

Add all elements from `iter` to the `LexOrdering`.

(&mut self, sort_exprs: impl IntoIterator<Item = PhysicalSortExpr>)

Source from the content-addressed store, hash-verified

391
392 /// Add all elements from `iter` to the `LexOrdering`.
393 pub fn extend(&mut self, sort_exprs: impl IntoIterator<Item = PhysicalSortExpr>) {
394 for sort_expr in sort_exprs {
395 self.push(sort_expr);
396 }
397 }
398
399 /// Returns the leading `PhysicalSortExpr` of the `LexOrdering`. Note that
400 /// this function does not return an `Option`, as a `LexOrdering` is always

Callers 15

union_schemaFunction · 0.45
with_self_filtersMethod · 0.45
output_exprsMethod · 0.45
try_new_with_schemaMethod · 0.45
create_schemaFunction · 0.45
aggregate_expressionsFunction · 0.45
evaluate_group_byFunction · 0.45
emitMethod · 0.45
transform_to_statesMethod · 0.45
vectorized_appendMethod · 0.45

Calls 1

pushMethod · 0.45