[][src]Struct pgx_pg_sys::HashJoinState

#[repr(C)]pub struct HashJoinState {
    pub js: JoinState,
    pub hashclauses: *mut ExprState,
    pub hj_OuterHashKeys: *mut List,
    pub hj_HashOperators: *mut List,
    pub hj_Collations: *mut List,
    pub hj_HashTable: HashJoinTable,
    pub hj_CurHashValue: uint32,
    pub hj_CurBucketNo: c_int,
    pub hj_CurSkewBucketNo: c_int,
    pub hj_CurTuple: HashJoinTuple,
    pub hj_OuterTupleSlot: *mut TupleTableSlot,
    pub hj_HashTupleSlot: *mut TupleTableSlot,
    pub hj_NullOuterTupleSlot: *mut TupleTableSlot,
    pub hj_NullInnerTupleSlot: *mut TupleTableSlot,
    pub hj_FirstOuterTupleSlot: *mut TupleTableSlot,
    pub hj_JoinState: c_int,
    pub hj_MatchedOuter: bool,
    pub hj_OuterNotEmpty: bool,
}

Fields

js: JoinStatehashclauses: *mut ExprStatehj_OuterHashKeys: *mut Listhj_HashOperators: *mut Listhj_Collations: *mut Listhj_HashTable: HashJoinTablehj_CurHashValue: uint32hj_CurBucketNo: c_inthj_CurSkewBucketNo: c_inthj_CurTuple: HashJoinTuplehj_OuterTupleSlot: *mut TupleTableSlothj_HashTupleSlot: *mut TupleTableSlothj_NullOuterTupleSlot: *mut TupleTableSlothj_NullInnerTupleSlot: *mut TupleTableSlothj_FirstOuterTupleSlot: *mut TupleTableSlothj_JoinState: c_inthj_MatchedOuter: boolhj_OuterNotEmpty: bool

Trait Implementations

impl Clone for HashJoinState[src]

impl Copy for HashJoinState[src]

impl Debug for HashJoinState[src]

impl Default for HashJoinState[src]

impl Display for HashJoinState[src]

impl PgNode for HashJoinState[src]

type NodeType = HashJoinState

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.