interface Enumerator
(source)
Merge two given physical plans by enumerating the applicable physical operators.
abstract fun enumerate(tree1: PhysicalPlan, tree2: PhysicalPlan, logicalOperator: Int): Sequence<PhysicalPlan> |
object SimpleEnumerator : Enumerator
The SimpleEnumerator will enumerate all physical operators we support for a given logical operator. |