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

Method pipe_operators

datafusion/sql/src/query.rs:106–116  ·  view source on GitHub ↗

Apply pipe operators to a plan

(
        &self,
        mut plan: LogicalPlan,
        pipe_operators: Vec<PipeOperator>,
        planner_context: &mut PlannerContext,
    )

Source from the content-addressed store, hash-verified

104
105 /// Apply pipe operators to a plan
106 fn pipe_operators(
107 &self,
108 mut plan: LogicalPlan,
109 pipe_operators: Vec<PipeOperator>,
110 planner_context: &mut PlannerContext,
111 ) -> Result<LogicalPlan> {
112 for pipe_operator in pipe_operators {
113 plan = self.pipe_operator(plan, pipe_operator, planner_context)?;
114 }
115 Ok(plan)
116 }
117
118 /// Apply a pipe operator to a plan
119 fn pipe_operator(

Callers 1

query_to_planMethod · 0.80

Calls 1

pipe_operatorMethod · 0.80

Tested by

no test coverage detected