[][src]Struct pgx_pg_sys::MergeJoinState

#[repr(C)]pub struct MergeJoinState {
    pub js: JoinState,
    pub mj_NumClauses: c_int,
    pub mj_Clauses: MergeJoinClause,
    pub mj_JoinState: c_int,
    pub mj_SkipMarkRestore: bool,
    pub mj_ExtraMarks: bool,
    pub mj_ConstFalseJoin: bool,
    pub mj_FillOuter: bool,
    pub mj_FillInner: bool,
    pub mj_MatchedOuter: bool,
    pub mj_MatchedInner: bool,
    pub mj_OuterTupleSlot: *mut TupleTableSlot,
    pub mj_InnerTupleSlot: *mut TupleTableSlot,
    pub mj_MarkedTupleSlot: *mut TupleTableSlot,
    pub mj_NullOuterTupleSlot: *mut TupleTableSlot,
    pub mj_NullInnerTupleSlot: *mut TupleTableSlot,
    pub mj_OuterEContext: *mut ExprContext,
    pub mj_InnerEContext: *mut ExprContext,
}

Fields

js: JoinStatemj_NumClauses: c_intmj_Clauses: MergeJoinClausemj_JoinState: c_intmj_SkipMarkRestore: boolmj_ExtraMarks: boolmj_ConstFalseJoin: boolmj_FillOuter: boolmj_FillInner: boolmj_MatchedOuter: boolmj_MatchedInner: boolmj_OuterTupleSlot: *mut TupleTableSlotmj_InnerTupleSlot: *mut TupleTableSlotmj_MarkedTupleSlot: *mut TupleTableSlotmj_NullOuterTupleSlot: *mut TupleTableSlotmj_NullInnerTupleSlot: *mut TupleTableSlotmj_OuterEContext: *mut ExprContextmj_InnerEContext: *mut ExprContext

Trait Implementations

impl Clone for MergeJoinState[src]

impl Copy for MergeJoinState[src]

impl Debug for MergeJoinState[src]

impl Default for MergeJoinState[src]

impl Display for MergeJoinState[src]

impl PgNode for MergeJoinState[src]

type NodeType = MergeJoinState

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.