Untitled

 avatar
unknown
rust
9 months ago
257 B
6
Indexable
pub struct HashJoinTable<T: MemPool> {
    mem_pool: Arc<T>,
    c_key: ContainerKey,

    meta_page_id: PageId,
    meta_frame_id: AtomicU32,
    
    num_buckets: usize,
    bucket_entries: Vec<BucketEntry>, // Cache of (recent_page_id, history_page_id)
}
Editor is loading...
Leave a Comment