Expand description
Structures for building the join operators.
The actual operators are Stream::join
, Stream::left_join
, Stream::outer_join
and
Stream::join_with
.
Structs§
- Join
Stream - Intermediate stream type for building the join between two streams.
- Join
Stream Local Hash - This is an intermediate type for building a join operator.
- Join
Stream Local Sort Merge - This is an intermediate type for building a join operator.
- Join
Stream Ship Broadcast Right - This is an intermediate type for building a join operator.
- Join
Stream Ship Hash - This is an intermediate type for building a join operator.
- Ship
Broadcast Right - Marker type for remembering that broadcast_right is the selected ship strategy.
- Ship
Hash - Marker type for remembering that hash is the selected ship strategy.
Traits§
- Ship
Strategy - Marker trait for the ship strategy marker types.
Type Aliases§
- Inner
Join Tuple - Type alias for a pair of joined items in an inner join.
- Left
Join Tuple - Type alias for a pair of joined items in a left join.
- Outer
Join Tuple - Type alias for a pair of joined items in an outer join.