hash_join_stream

Function hash_join_stream 

Source
pub fn hash_join_stream<P, F>(
    left: &Table<P>,
    right: &Table<P>,
    keys: &[JoinKey],
    options: &JoinOptions,
    on_batch: F,
) -> Result<()>
where P: Pager<Blob = EntryHandle> + Send + Sync, F: FnMut(RecordBatch),
Expand description

Entry point for hash join algorithm.