Class CorrelatedJoinNode


  • @Immutable
    public class CorrelatedJoinNode
    extends PlanNode
    For every row from input a subquery relation is calculated. Then input row is cross joined with subquery relation and returned as a result.

    INNER - does not return any row for input row when subquery relation is empty LEFT - does return input completed with NULL values when subquery relation is empty