pub trait TableJoinExt<P>{
// Required method
fn join_stream<F>(
&self,
right: &Table<P>,
keys: &[JoinKey],
options: &JoinOptions,
on_batch: F,
) -> LlkvResult<()>
where F: FnMut(RecordBatch);
}Expand description
Extension trait adding join operations to Table.
Required Methods§
Sourcefn join_stream<F>(
&self,
right: &Table<P>,
keys: &[JoinKey],
options: &JoinOptions,
on_batch: F,
) -> LlkvResult<()>where
F: FnMut(RecordBatch),
fn join_stream<F>(
&self,
right: &Table<P>,
keys: &[JoinKey],
options: &JoinOptions,
on_batch: F,
) -> LlkvResult<()>where
F: FnMut(RecordBatch),
Join this table with another table based on equality predicates.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.