Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.10.0
-
None
Description
Outer joins are currently supported with two local execution strategies:
- sort-merge join
- hash join where the hash table is built on the inner side. Hence, this strategy is only supported for left and right outer joins.
In order to support hash-tables on the outer side, we need a special hash table implementation that gives access to all records which have not been accessed during the probe phase.