Untitled

mail@pastecode.io avatar
unknown
rust
11 days ago
257 B
2
Indexable
Never
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)
}
Leave a Comment