#[repr(C)]pub struct GatherMergeState {Show 15 fields
pub ps: PlanState,
pub initialized: bool,
pub gm_initialized: bool,
pub need_to_scan_locally: bool,
pub tuples_needed: int64,
pub tupDesc: TupleDesc,
pub gm_nkeys: c_int,
pub gm_sortkeys: SortSupport,
pub pei: *mut ParallelExecutorInfo,
pub nworkers_launched: c_int,
pub nreaders: c_int,
pub gm_slots: *mut *mut TupleTableSlot,
pub reader: *mut *mut TupleQueueReader,
pub gm_tuple_buffers: *mut GMReaderTupleBuffer,
pub gm_heap: *mut binaryheap,
}
Fields§
§ps: PlanState
§initialized: bool
§gm_initialized: bool
§need_to_scan_locally: bool
§tuples_needed: int64
§tupDesc: TupleDesc
§gm_nkeys: c_int
§gm_sortkeys: SortSupport
§pei: *mut ParallelExecutorInfo
§nworkers_launched: c_int
§nreaders: c_int
§gm_slots: *mut *mut TupleTableSlot
§reader: *mut *mut TupleQueueReader
§gm_tuple_buffers: *mut GMReaderTupleBuffer
§gm_heap: *mut binaryheap
Trait Implementations§
Source§impl Clone for GatherMergeState
impl Clone for GatherMergeState
Source§fn clone(&self) -> GatherMergeState
fn clone(&self) -> GatherMergeState
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 GatherMergeState
impl Debug for GatherMergeState
Source§impl Default for GatherMergeState
impl Default for GatherMergeState
Source§impl Display for GatherMergeState
impl Display for GatherMergeState
Source§impl PgNode for GatherMergeState
impl PgNode for GatherMergeState
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for GatherMergeState
Auto Trait Implementations§
impl Freeze for GatherMergeState
impl RefUnwindSafe for GatherMergeState
impl !Send for GatherMergeState
impl !Sync for GatherMergeState
impl Unpin for GatherMergeState
impl UnwindSafe for GatherMergeState
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