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

Trait Implementations§

source§

impl Clone for WindowAggState

source§

fn clone(&self) -> WindowAggState

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WindowAggState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for WindowAggState

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for WindowAggState

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PgNode for WindowAggState

source§

fn display_node(&self) -> String

Format this node Read more
source§

impl Copy for WindowAggState

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.