HummockVersionDelta

Type Alias HummockVersionDelta 

Source
pub type HummockVersionDelta = HummockVersionDeltaCommon<SstableInfo>;

Aliased Type§

pub struct HummockVersionDelta {
    pub id: HummockVersionId,
    pub prev_id: HummockVersionId,
    pub group_deltas: HashMap<u64, GroupDeltasCommon<SstableInfo>>,
    pub(crate) max_committed_epoch: u64,
    pub trivial_move: bool,
    pub new_table_watermarks: HashMap<TypedId<1>, TableWatermarks>,
    pub removed_table_ids: HashSet<TypedId<1>>,
    pub change_log_delta: HashMap<TypedId<1>, ChangeLogDeltaCommon<SstableInfo>>,
    pub state_table_info_delta: HashMap<TypedId<1>, StateTableInfoDelta>,
    pub vector_index_delta: HashMap<TypedId<1>, VectorIndexDelta>,
}

Fields§

§id: HummockVersionId§prev_id: HummockVersionId§group_deltas: HashMap<u64, GroupDeltasCommon<SstableInfo>>§max_committed_epoch: u64
👎Deprecated
§trivial_move: bool§new_table_watermarks: HashMap<TypedId<1>, TableWatermarks>§removed_table_ids: HashSet<TypedId<1>>§change_log_delta: HashMap<TypedId<1>, ChangeLogDeltaCommon<SstableInfo>>§state_table_info_delta: HashMap<TypedId<1>, StateTableInfoDelta>§vector_index_delta: HashMap<TypedId<1>, VectorIndexDelta>

Implementations§

Trait Implementations§

Source§

impl Default for HummockVersionDelta

Source§

fn default() -> Self

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