pub type LocalHummockVersion = HummockVersionCommon<SstableInfo, ()>;
Aliased Type§
struct LocalHummockVersion {
pub id: HummockVersionId,
pub levels: HashMap<u64, LevelsCommon<SstableInfo>>,
pub(crate) max_committed_epoch: u64,
pub table_watermarks: HashMap<TableId, Arc<TableWatermarks>>,
pub table_change_log: HashMap<TableId, TableChangeLogCommon<()>>,
pub state_table_info: HummockVersionStateTableInfo,
}
Fields§
§id: HummockVersionId
§levels: HashMap<u64, LevelsCommon<SstableInfo>>
§max_committed_epoch: u64
👎Deprecated
§table_watermarks: HashMap<TableId, Arc<TableWatermarks>>
§table_change_log: HashMap<TableId, TableChangeLogCommon<()>>
§state_table_info: HummockVersionStateTableInfo
Trait Implementations§
source§impl From<HummockVersionCommon<SstableInfo>> for LocalHummockVersion
impl From<HummockVersionCommon<SstableInfo>> for LocalHummockVersion
source§fn from(version: HummockVersion) -> Self
fn from(version: HummockVersion) -> Self
Converts to this type from the input type.