Skip to main content

Module join

Module join 

Source
Expand description

JOIN algorithm implementations.

Structs§

HashJoin
Hash Join executor.
NestedLoopJoin
Nested Loop Join executor.
SortMergeJoin
Sort-Merge Join executor.

Functions§

nested_loop_join
Performs a nested loop join using a predicate function.
sort_merge_join
Performs a sort-merge join on pre-sorted slices.