Struct datafusion_sql::planner::PlannerContext
source · pub struct PlannerContext {
pub prepare_param_data_types: Vec<DataType>,
pub ctes: HashMap<String, LogicalPlan>,
}
Expand description
Struct to store Common Table Expression (CTE) provided with WITH clause and Parameter Data Types provided with PREPARE statement
Fields§
§prepare_param_data_types: Vec<DataType>
Data type provided with prepare statement
ctes: HashMap<String, LogicalPlan>
Map of CTE name to logical plan of the WITH clause
Implementations§
Trait Implementations§
source§impl Clone for PlannerContext
impl Clone for PlannerContext
source§fn clone(&self) -> PlannerContext
fn clone(&self) -> PlannerContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more