#[repr(C)]pub struct SetOpState {
pub ps: PlanState,
pub eqfunction: *mut ExprState,
pub eqfuncoids: *mut Oid,
pub hashfunctions: *mut FmgrInfo,
pub setop_done: bool,
pub numOutput: c_long,
pub pergroup: SetOpStatePerGroup,
pub grp_firstTuple: HeapTuple,
pub hashtable: TupleHashTable,
pub tableContext: MemoryContext,
pub table_filled: bool,
pub hashiter: TupleHashIterator,
}
Fields§
§ps: PlanState
§eqfunction: *mut ExprState
§eqfuncoids: *mut Oid
§hashfunctions: *mut FmgrInfo
§setop_done: bool
§numOutput: c_long
§pergroup: SetOpStatePerGroup
§grp_firstTuple: HeapTuple
§hashtable: TupleHashTable
§tableContext: MemoryContext
§table_filled: bool
§hashiter: TupleHashIterator
Trait Implementations§
Source§impl Clone for SetOpState
impl Clone for SetOpState
Source§fn clone(&self) -> SetOpState
fn clone(&self) -> SetOpState
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 moreSource§impl Debug for SetOpState
impl Debug for SetOpState
Source§impl Default for SetOpState
impl Default for SetOpState
Source§impl Display for SetOpState
impl Display for SetOpState
Source§impl PgNode for SetOpState
impl PgNode for SetOpState
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for SetOpState
Auto Trait Implementations§
impl Freeze for SetOpState
impl RefUnwindSafe for SetOpState
impl !Send for SetOpState
impl !Sync for SetOpState
impl Unpin for SetOpState
impl UnwindSafe for SetOpState
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