pub struct OptimizerConfig {
pub enable_simplify_algebra: bool,
pub enable_push_filters_down: bool,
pub enable_push_graph_pattern_filters: bool,
pub enable_push_filter_into_traverse: bool,
pub enable_push_filter_below_graph_join: bool,
pub enable_fuse_join_pattern: bool,
pub enable_merge_vector_thresholds: bool,
pub enable_reorder_intersect: bool,
pub enable_reorder_fusion_signals: bool,
pub enable_apply_index_scan: bool,
}Expand description
Fluent configuration for the optimizer pipeline. Lets callers disable individual stages for testing without poking at private fields.
Fields§
§enable_simplify_algebra: bool§enable_push_filters_down: bool§enable_push_graph_pattern_filters: bool§enable_push_filter_into_traverse: bool§enable_push_filter_below_graph_join: bool§enable_fuse_join_pattern: bool§enable_merge_vector_thresholds: bool👎Deprecated:
vector threshold merging was removed; this field has no effect
Retained for source compatibility; ignored because merging vector thresholds loses scores and can suppress validation errors.
enable_reorder_intersect: bool§enable_reorder_fusion_signals: bool§enable_apply_index_scan: boolTrait Implementations§
Source§impl Clone for OptimizerConfig
impl Clone for OptimizerConfig
Source§fn clone(&self) -> OptimizerConfig
fn clone(&self) -> OptimizerConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OptimizerConfig
impl Debug for OptimizerConfig
Auto Trait Implementations§
impl Freeze for OptimizerConfig
impl RefUnwindSafe for OptimizerConfig
impl Send for OptimizerConfig
impl Sync for OptimizerConfig
impl Unpin for OptimizerConfig
impl UnsafeUnpin for OptimizerConfig
impl UnwindSafe for OptimizerConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more