pub type AllowedOptimizations = OptState;
Expand description

AllowedOptimizations

Aliased Type§

struct AllowedOptimizations {
    pub projection_pushdown: bool,
    pub predicate_pushdown: bool,
    pub type_coercion: bool,
    pub simplify_expr: bool,
    pub file_caching: bool,
    pub slice_pushdown: bool,
    pub comm_subplan_elim: bool,
    pub comm_subexpr_elim: bool,
    pub streaming: bool,
    pub eager: bool,
    pub fast_projection: bool,
}

Fields§

§projection_pushdown: bool§predicate_pushdown: bool§type_coercion: bool§simplify_expr: bool§file_caching: bool§slice_pushdown: bool§comm_subplan_elim: bool
Available on crate feature cse only.
§comm_subexpr_elim: bool
Available on crate feature cse only.
§streaming: bool§eager: bool§fast_projection: bool