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

Method with_lambda_parameters

datafusion/sql/src/planner.rs:411–419  ·  view source on GitHub ↗
(
        mut self,
        parameters: impl IntoIterator<Item = FieldRef>,
    )

Source from the content-addressed store, hash-verified

409 }
410
411 pub fn with_lambda_parameters(
412 mut self,
413 parameters: impl IntoIterator<Item = FieldRef>,
414 ) -> Self {
415 self.lambda_parameters
416 .extend(parameters.into_iter().map(|f| (f.name().clone(), f)));
417
418 self
419 }
420
421 /// Remove the plan of CTE / Subquery for the specified name
422 pub(super) fn remove_cte(&mut self, cte_name: &str) {

Callers 1

Calls 5

extendMethod · 0.45
mapMethod · 0.45
into_iterMethod · 0.45
cloneMethod · 0.45
nameMethod · 0.45

Tested by

no test coverage detected