/** * Rewrite LogicalJoin. * * @param rel Join */ public Frame decorrelateRel(LogicalJoin rel) { // For SEMI/ANTI join decorrelate it's input directly, // because the correlate variables can only be propagated from // the left side, which is not supported yet. if (!rel.getJoinType().projectsRight()) { decorrelateRel((RelNode) rel); } ...
return is missing before decorrelateRel((RelNode) rel);
- Is contained by
-
CALCITE-3170 ANTI join on conditions push down generates wrong plan
-
- Closed
-
- links to