Struct pgx_pg_sys::SubPlanState
source · [−]#[repr(C)]pub struct SubPlanState {Show 27 fields
pub type_: NodeTag,
pub subplan: *mut SubPlan,
pub planstate: *mut PlanState,
pub parent: *mut PlanState,
pub testexpr: *mut ExprState,
pub args: *mut List,
pub curTuple: HeapTuple,
pub curArray: Datum,
pub descRight: TupleDesc,
pub projLeft: *mut ProjectionInfo,
pub projRight: *mut ProjectionInfo,
pub hashtable: TupleHashTable,
pub hashnulls: TupleHashTable,
pub havehashrows: bool,
pub havenullrows: bool,
pub hashtablecxt: MemoryContext,
pub hashtempcxt: MemoryContext,
pub innerecontext: *mut ExprContext,
pub numCols: c_int,
pub keyColIdx: *mut AttrNumber,
pub tab_eq_funcoids: *mut Oid,
pub tab_collations: *mut Oid,
pub tab_hash_funcs: *mut FmgrInfo,
pub tab_eq_funcs: *mut FmgrInfo,
pub lhs_hash_funcs: *mut FmgrInfo,
pub cur_eq_funcs: *mut FmgrInfo,
pub cur_eq_comp: *mut ExprState,
}Fields
type_: NodeTagsubplan: *mut SubPlanplanstate: *mut PlanStateparent: *mut PlanStatetestexpr: *mut ExprStateargs: *mut ListcurTuple: HeapTuplecurArray: DatumdescRight: TupleDescprojLeft: *mut ProjectionInfoprojRight: *mut ProjectionInfohashtable: TupleHashTablehashnulls: TupleHashTablehavehashrows: boolhavenullrows: boolhashtablecxt: MemoryContexthashtempcxt: MemoryContextinnerecontext: *mut ExprContextnumCols: c_intkeyColIdx: *mut AttrNumbertab_eq_funcoids: *mut Oidtab_collations: *mut Oidtab_hash_funcs: *mut FmgrInfotab_eq_funcs: *mut FmgrInfolhs_hash_funcs: *mut FmgrInfocur_eq_funcs: *mut FmgrInfocur_eq_comp: *mut ExprStateTrait Implementations
sourceimpl Clone for SubPlanState
impl Clone for SubPlanState
sourcefn clone(&self) -> SubPlanState
fn clone(&self) -> SubPlanState
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SubPlanState
impl Debug for SubPlanState
sourceimpl Default for SubPlanState
impl Default for SubPlanState
sourceimpl Display for SubPlanState
impl Display for SubPlanState
sourceimpl PgNode for SubPlanState
impl PgNode for SubPlanState
sourcefn display_node(&self) -> String
fn display_node(&self) -> String
Format this node
impl Copy for SubPlanState
Auto Trait Implementations
impl RefUnwindSafe for SubPlanState
impl !Send for SubPlanState
impl !Sync for SubPlanState
impl Unpin for SubPlanState
impl UnwindSafe for SubPlanState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more