Struct pgx_pg_sys::WindowAggState[][src]

#[repr(C)]
pub struct WindowAggState {
Show fields pub ss: ScanState, pub funcs: *mut List, pub numfuncs: c_int, pub numaggs: c_int, pub perfunc: WindowStatePerFunc, pub peragg: WindowStatePerAgg, pub partEqfunction: *mut ExprState, pub ordEqfunction: *mut ExprState, pub buffer: *mut Tuplestorestate, pub current_ptr: c_int, pub framehead_ptr: c_int, pub frametail_ptr: c_int, pub grouptail_ptr: c_int, pub spooled_rows: int64, pub currentpos: int64, pub frameheadpos: int64, pub frametailpos: int64, pub agg_winobj: *mut WindowObjectData, pub aggregatedbase: int64, pub aggregatedupto: int64, pub frameOptions: c_int, pub startOffset: *mut ExprState, pub endOffset: *mut ExprState, pub startOffsetValue: Datum, pub endOffsetValue: Datum, pub startInRangeFunc: FmgrInfo, pub endInRangeFunc: FmgrInfo, pub inRangeColl: Oid, pub inRangeAsc: bool, pub inRangeNullsFirst: bool, pub currentgroup: int64, pub frameheadgroup: int64, pub frametailgroup: int64, pub groupheadpos: int64, pub grouptailpos: int64, pub partcontext: MemoryContext, pub aggcontext: MemoryContext, pub curaggcontext: MemoryContext, pub tmpcontext: *mut ExprContext, pub all_first: bool, pub all_done: bool, pub partition_spooled: bool, pub more_partitions: bool, pub framehead_valid: bool, pub frametail_valid: bool, pub grouptail_valid: bool, pub first_part_slot: *mut TupleTableSlot, pub framehead_slot: *mut TupleTableSlot, pub frametail_slot: *mut TupleTableSlot, pub agg_row_slot: *mut TupleTableSlot, pub temp_slot_1: *mut TupleTableSlot, pub temp_slot_2: *mut TupleTableSlot,
}

Fields

ss: ScanStatefuncs: *mut Listnumfuncs: c_intnumaggs: c_intperfunc: WindowStatePerFuncperagg: WindowStatePerAggpartEqfunction: *mut ExprStateordEqfunction: *mut ExprStatebuffer: *mut Tuplestorestatecurrent_ptr: c_intframehead_ptr: c_intframetail_ptr: c_intgrouptail_ptr: c_intspooled_rows: int64currentpos: int64frameheadpos: int64frametailpos: int64agg_winobj: *mut WindowObjectDataaggregatedbase: int64aggregatedupto: int64frameOptions: c_intstartOffset: *mut ExprStateendOffset: *mut ExprStatestartOffsetValue: DatumendOffsetValue: DatumstartInRangeFunc: FmgrInfoendInRangeFunc: FmgrInfoinRangeColl: OidinRangeAsc: boolinRangeNullsFirst: boolcurrentgroup: int64frameheadgroup: int64frametailgroup: int64groupheadpos: int64grouptailpos: int64partcontext: MemoryContextaggcontext: MemoryContextcuraggcontext: MemoryContexttmpcontext: *mut ExprContextall_first: boolall_done: boolpartition_spooled: boolmore_partitions: boolframehead_valid: boolframetail_valid: boolgrouptail_valid: boolfirst_part_slot: *mut TupleTableSlotframehead_slot: *mut TupleTableSlotframetail_slot: *mut TupleTableSlotagg_row_slot: *mut TupleTableSlottemp_slot_1: *mut TupleTableSlottemp_slot_2: *mut TupleTableSlot

Trait Implementations

impl Clone for WindowAggState[src]

impl Copy for WindowAggState[src]

impl Debug for WindowAggState[src]

impl Default for WindowAggState[src]

impl Display for WindowAggState[src]

impl PgNode for WindowAggState[src]

type NodeType = WindowAggState

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.