Package org.apache.calcite.rel.core
Interface RelFactories.AsofJoinFactory
- Enclosing class:
RelFactories
public static interface RelFactories.AsofJoinFactory
Creates ASOF join of the appropriate type for a rule's calling convention.
-
Method Summary
Modifier and TypeMethodDescriptioncreateAsofJoin
(RelNode left, RelNode right, List<RelHint> hints, RexNode condition, RexNode matchCondition, JoinRelType joinType) Creates an ASOF join.
-
Method Details
-
createAsofJoin
RelNode createAsofJoin(RelNode left, RelNode right, List<RelHint> hints, RexNode condition, RexNode matchCondition, JoinRelType joinType) Creates an ASOF join.- Parameters:
left
- Left inputright
- Right inputhints
- Hintscondition
- Join conditionmatchCondition
- ASOF join match conditionjoinType
- Type of join (ASOF or LEFT_ASOF)
-