Type Alias PbLogRowSeqScanNode

Source
pub type PbLogRowSeqScanNode = LogRowSeqScanNode;
Expand description

Alias for LogRowSeqScanNode.

Aliased Type§

struct PbLogRowSeqScanNode {
    pub table_desc: Option<StorageTableDesc>,
    pub column_ids: Vec<i32>,
    pub vnode_bitmap: Option<Buffer>,
    pub old_epoch: Option<BatchQueryEpoch>,
    pub new_epoch: Option<BatchQueryEpoch>,
    pub ordered: bool,
    pub scan_range: Option<ScanRange>,
}

Fields§

§table_desc: Option<StorageTableDesc>§column_ids: Vec<i32>

This records the mandatory column_ids of the original table, excluding op

§vnode_bitmap: Option<Buffer>

The partition to read for scan tasks.

Will be filled by the scheduler.

§old_epoch: Option<BatchQueryEpoch>§new_epoch: Option<BatchQueryEpoch>§ordered: bool§scan_range: Option<ScanRange>